Update CHNAGES.rst, bump version number.

This commit is contained in:
Tyson Clugg 2015-10-29 10:06:17 +11:00
parent 9c865dd978
commit f371c5b1d4
5 changed files with 8 additions and 4 deletions

View file

@ -1,6 +1,10 @@
Change Log Change Log
========== ==========
0.17.2
------
* Python 3 fixes using `six` compatibility library (#16, #17).
0.17.1 0.17.1
------ ------
* Fix minor issue where some subscription queries still used slow queries. * Fix minor issue where some subscription queries still used slow queries.

View file

@ -10,4 +10,4 @@ sed -e "s/^__version__ = '${OLD}'$/__version__ = '${NEW}'/" dddp/__init__.py > .
mv .__init__.py dddp/__init__.py mv .__init__.py dddp/__init__.py
sed -e "s/^version = '${OLD%.*}'/version = '${NEW%.*}'/" -e "s/^release = '${OLD}'/release = '${NEW}'/" docs/conf.py > docs/.conf.py sed -e "s/^version = '${OLD%.*}'/version = '${NEW%.*}'/" -e "s/^release = '${OLD}'/release = '${NEW}'/" docs/conf.py > docs/.conf.py
mv docs/.conf.py docs/conf.py mv docs/.conf.py docs/conf.py
git diff setup.py docs/conf.py git diff setup.py dddp/__init__.py docs/conf.py

View file

@ -5,7 +5,7 @@ import sys
from gevent.local import local from gevent.local import local
from dddp import alea from dddp import alea
__version__ = '0.17.1' __version__ = '0.17.2'
default_app_config = 'dddp.apps.DjangoDDPConfig' default_app_config = 'dddp.apps.DjangoDDPConfig'

View file

@ -58,7 +58,7 @@ copyright = u'2015, Tyson Clugg'
# The short X.Y version. # The short X.Y version.
version = '0.17' version = '0.17'
# The full version, including alpha/beta/rc tags. # The full version, including alpha/beta/rc tags.
release = '0.17.1' release = '0.17.2'
# The language for content autogenerated by Sphinx. Refer to documentation # The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages. # for a list of supported languages.

View file

@ -44,7 +44,7 @@ CLASSIFIERS = [
setup( setup(
name='django-ddp', name='django-ddp',
version='0.17.1', version='0.17.2',
description=__doc__, description=__doc__,
long_description=open('README.rst').read(), long_description=open('README.rst').read(),
author='Tyson Clugg', author='Tyson Clugg',