diff --git a/CHANGES.rst b/CHANGES.rst index 11097fb..a57bb6c 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,6 +1,14 @@ Change Log ========== +0.17.3 +------ +* Depend on gevent>=1.1b6 if running anything other than CPython 2.7, + otherwise allow gevent 1.0 (current stable). +* Preliminary (but broken) support for PyPy/Jython/IronPython though + platform specific install_requires on psycopg2cffi instead of psycopg2 + for all platforms except CPython 2/3. + 0.17.2 ------ * Python 3 fixes using `six` compatibility library (#16, #17). diff --git a/dddp/__init__.py b/dddp/__init__.py index 6278adb..43f52f0 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.2' +__version__ = '0.17.3' default_app_config = 'dddp.apps.DjangoDDPConfig' diff --git a/docs/conf.py b/docs/conf.py index b9b5206..21b7646 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.2' +release = '0.17.3' # 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 83a44b9..76ea1e7 100644 --- a/setup.py +++ b/setup.py @@ -60,7 +60,7 @@ IMPLEMENTATION_INSTALL_REQUIRES = { setup( name='django-ddp', - version='0.17.2', + version='0.17.3', description=__doc__, long_description=open('README.rst').read(), author='Tyson Clugg',