Merge tag '0.18.1' into develop

0.18.1
This commit is contained in:
Tyson Clugg 2015-11-06 01:14:28 +11:00
commit 79f573cb73
4 changed files with 7 additions and 3 deletions

View file

@ -1,6 +1,10 @@
Change Log
==========
0.18.1
------
* Don't assume Django projects include a `wsgi.py`.
0.18.0
------
* Python implementaiton specific builds using tox so that Python2 and

View file

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

View file

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