diff --git a/CHANGES.rst b/CHANGES.rst index ab30310..76e4be7 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,6 +1,10 @@ Change Log ========== +0.17.1 +------ +* Fix minor issue where some subscription queries still used slow queries. + 0.17.0 ------ * Make the SQL for subscriptions much faster for PostgreSQL. diff --git a/docs/conf.py b/docs/conf.py index 144cd4d..058a98d 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.0' +release = '0.17.1' # 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 050bd1f..8d5468a 100644 --- a/setup.py +++ b/setup.py @@ -44,7 +44,7 @@ CLASSIFIERS = [ setup( name='django-ddp', - version='0.17.0', + version='0.17.1', description=__doc__, long_description=open('README.rst').read(), author='Tyson Clugg',