mirror of
https://github.com/jazzband/django-ddp.git
synced 2026-03-16 22:40:24 +00:00
Update CHANGES.rst, bump version number.
This commit is contained in:
parent
cb7b0a08fd
commit
23f233bd43
4 changed files with 11 additions and 3 deletions
|
|
@ -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).
|
||||
|
|
|
|||
|
|
@ -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'
|
||||
|
||||
|
|
|
|||
|
|
@ -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.
|
||||
|
|
|
|||
2
setup.py
2
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',
|
||||
|
|
|
|||
Loading…
Reference in a new issue