mirror of
https://github.com/jazzband/django-ddp.git
synced 2026-04-18 14:11:04 +00:00
Merge tag '0.18.0' into develop
0.18.0
This commit is contained in:
commit
1497af8071
4 changed files with 10 additions and 4 deletions
|
|
@ -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,
|
||||
|
|
|
|||
|
|
@ -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'
|
||||
|
||||
|
|
|
|||
|
|
@ -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.
|
||||
|
|
|
|||
2
setup.py
2
setup.py
|
|
@ -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',
|
||||
|
|
|
|||
Loading…
Reference in a new issue