Update Changes and Version for 1.0 Release

This commit is contained in:
Carlton Gibson 2016-11-17 15:24:40 +01:00
parent e7fa6989a3
commit 3a18f11b3b
5 changed files with 22 additions and 5 deletions

View File

@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.15.3
current_version = 1.0.0
commit = False
tag = False
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\-(?P<release>[a-z]+))?

View File

@ -1,3 +1,20 @@
Version 1.0 (2016-11-17)
------------------------
This release removes all the deprecated code from 0.14 and 0.15 for 1.0 #480.
Please see the `Migration Notes`__ for details of how to migrate.
Stick with 0.15.3 if you're not ready to update.
__ https://github.com/carltongibson/django-filter/blob/develop/docs/migration.txt
The release includes a number of small fixes and documentation updates.
See the `1.0 Milestone`__ for full details.
__ https://github.com/carltongibson/django-filter/milestone/8?closed=1
Version 0.15.3 (2016-10-17)
---------------------------

View File

@ -4,7 +4,7 @@ from .constants import STRICTNESS
from .filterset import FilterSet
from .filters import *
__version__ = '0.15.3'
__version__ = '1.0.0'
def parse_version(version):

View File

@ -48,9 +48,9 @@ copyright = u'2013, Alex Gaynor and others.'
# built documents.
#
# The short X.Y version.
version = '0.15.3'
version = '1.0.0'
# The full version, including alpha/beta/rc tags.
release = '0.15.3'
release = '1.0.0'
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.

View File

@ -6,7 +6,7 @@ f = open('README.rst')
readme = f.read()
f.close()
version = '0.15.3'
version = '1.0.0'
if sys.argv[-1] == 'publish':
if os.system("pip freeze | grep wheel"):