Update CHANGES.rst, bump version number.

This commit is contained in:
Tyson Clugg 2015-10-30 14:27:37 +11:00
parent cb7b0a08fd
commit 23f233bd43
4 changed files with 11 additions and 3 deletions

View file

@ -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).

View file

@ -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'

View file

@ -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.

View file

@ -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',