Update CHANGES.rst, bump version number.

This commit is contained in:
Tyson Clugg 2015-12-16 21:29:35 +11:00
parent df495423cf
commit 64aa79fab7
4 changed files with 8 additions and 7 deletions

View file

@ -4,9 +4,10 @@ Change Log
All notable changes to this project will be documented in this file.
This project adheres to `Semantic Versioning <http://semver.org/>`_.
develop
-------
* Dropped support for Django 1.7 (didn't work anyway).
0.19.1
------
* Dropped support for Django 1.7 (support expired on December 1 2015,
see https://www.djangoproject.com/download/#supported-versions).
* Require `setuptools>=18.5` at install time due to use of
`python_platform_implementation` environment marker.
* Moved repository to https://github.com/django-ddp/django-ddp (new

View file

@ -4,7 +4,7 @@ import sys
from gevent.local import local
from dddp import alea
__version__ = '0.18.1'
__version__ = '0.19.0'
__url__ = 'https://github.com/django-ddp/django-ddp'
default_app_config = 'dddp.apps.DjangoDDPConfig'

View file

@ -88,9 +88,9 @@ copyright = u'2015, Tyson Clugg'
# built documents.
#
# The short X.Y version.
version = '0.18'
version = '0.19'
# The full version, including alpha/beta/rc tags.
release = '0.18.1'
release = '0.19.0'
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.

View file

@ -81,7 +81,7 @@ CLASSIFIERS = [
setuptools.setup(
name='django-ddp',
version='0.18.1',
version='0.19.0',
description=__doc__,
long_description=open('README.rst').read(),
author='Tyson Clugg',