mirror of
https://github.com/jazzband/django-ddp.git
synced 2026-03-16 22:40:24 +00:00
Update CHNAGES.rst, bump version number.
This commit is contained in:
parent
9c865dd978
commit
f371c5b1d4
5 changed files with 8 additions and 4 deletions
|
|
@ -1,6 +1,10 @@
|
|||
Change Log
|
||||
==========
|
||||
|
||||
0.17.2
|
||||
------
|
||||
* Python 3 fixes using `six` compatibility library (#16, #17).
|
||||
|
||||
0.17.1
|
||||
------
|
||||
* Fix minor issue where some subscription queries still used slow queries.
|
||||
|
|
|
|||
|
|
@ -10,4 +10,4 @@ sed -e "s/^__version__ = '${OLD}'$/__version__ = '${NEW}'/" dddp/__init__.py > .
|
|||
mv .__init__.py dddp/__init__.py
|
||||
sed -e "s/^version = '${OLD%.*}'/version = '${NEW%.*}'/" -e "s/^release = '${OLD}'/release = '${NEW}'/" docs/conf.py > docs/.conf.py
|
||||
mv docs/.conf.py docs/conf.py
|
||||
git diff setup.py docs/conf.py
|
||||
git diff setup.py dddp/__init__.py docs/conf.py
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@ import sys
|
|||
from gevent.local import local
|
||||
from dddp import alea
|
||||
|
||||
__version__ = '0.17.1'
|
||||
__version__ = '0.17.2'
|
||||
|
||||
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.1'
|
||||
release = '0.17.2'
|
||||
|
||||
# The language for content autogenerated by Sphinx. Refer to documentation
|
||||
# for a list of supported languages.
|
||||
|
|
|
|||
2
setup.py
2
setup.py
|
|
@ -44,7 +44,7 @@ CLASSIFIERS = [
|
|||
|
||||
setup(
|
||||
name='django-ddp',
|
||||
version='0.17.1',
|
||||
version='0.17.2',
|
||||
description=__doc__,
|
||||
long_description=open('README.rst').read(),
|
||||
author='Tyson Clugg',
|
||||
|
|
|
|||
Loading…
Reference in a new issue