Merge tag '0.18.0' into develop

0.18.0
This commit is contained in:
Tyson Clugg 2015-11-05 15:05:49 +11:00
commit 1497af8071
4 changed files with 10 additions and 4 deletions

View file

@ -1,6 +1,12 @@
Change Log
==========
0.18.0
------
* Python implementaiton specific builds using tox so that Python2 and
Python3 can have different dependencies (eg: gevent>=1.1 for Pyton3).
* Added support for `METEOR_SETTINGS` environment variable.
0.17.3
------
* Depend on gevent>=1.1b6 if running anything other than CPython 2.7,

View file

@ -5,7 +5,7 @@ import sys
from gevent.local import local
from dddp import alea
__version__ = '0.17.3'
__version__ = '0.18.0'
default_app_config = 'dddp.apps.DjangoDDPConfig'

View file

@ -60,9 +60,9 @@ copyright = u'2015, Tyson Clugg'
# built documents.
#
# The short X.Y version.
version = '0.17'
version = '0.18'
# The full version, including alpha/beta/rc tags.
release = '0.17.3'
release = '0.18.0'
# 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.3',
version='0.18.0',
description=__doc__,
long_description=open('README.rst').read(),
author='Tyson Clugg',