diff --git a/CHANGES.rst b/CHANGES.rst index 76e4be7..11097fb 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,6 +1,10 @@ Change Log ========== +0.17.2 +------ +* Python 3 fixes using `six` compatibility library (#16, #17). + 0.17.1 ------ * Fix minor issue where some subscription queries still used slow queries. diff --git a/bumpversion.sh b/bumpversion.sh index b79b7d7..2ec0b95 100755 --- a/bumpversion.sh +++ b/bumpversion.sh @@ -10,4 +10,4 @@ sed -e "s/^__version__ = '${OLD}'$/__version__ = '${NEW}'/" 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 mv docs/.conf.py docs/conf.py -git diff setup.py docs/conf.py +git diff setup.py dddp/__init__.py docs/conf.py diff --git a/dddp/__init__.py b/dddp/__init__.py index bb1d172..6278adb 100644 --- a/dddp/__init__.py +++ b/dddp/__init__.py @@ -5,7 +5,7 @@ import sys from gevent.local import local from dddp import alea -__version__ = '0.17.1' +__version__ = '0.17.2' default_app_config = 'dddp.apps.DjangoDDPConfig' diff --git a/docs/conf.py b/docs/conf.py index 058a98d..b9b5206 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -58,7 +58,7 @@ copyright = u'2015, Tyson Clugg' # The short X.Y version. version = '0.17' # 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 # for a list of supported languages. diff --git a/setup.py b/setup.py index c1b93b1..eef06fe 100644 --- a/setup.py +++ b/setup.py @@ -44,7 +44,7 @@ CLASSIFIERS = [ setup( name='django-ddp', - version='0.17.1', + version='0.17.2', description=__doc__, long_description=open('README.rst').read(), author='Tyson Clugg',