From 3a18f11b3bba2c43dbf1fde89dd8808703a89f2b Mon Sep 17 00:00:00 2001 From: Carlton Gibson Date: Thu, 17 Nov 2016 15:24:40 +0100 Subject: [PATCH] Update Changes and Version for 1.0 Release --- .bumpversion.cfg | 2 +- CHANGES.rst | 17 +++++++++++++++++ django_filters/__init__.py | 2 +- docs/conf.py | 4 ++-- setup.py | 2 +- 5 files changed, 22 insertions(+), 5 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 3e15829..14336f4 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.15.3 +current_version = 1.0.0 commit = False tag = False parse = (?P\d+)\.(?P\d+)\.(?P\d+)(\-(?P[a-z]+))? diff --git a/CHANGES.rst b/CHANGES.rst index d8857c3..460bbd8 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -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) --------------------------- diff --git a/django_filters/__init__.py b/django_filters/__init__.py index 0059d07..6f24007 100644 --- a/django_filters/__init__.py +++ b/django_filters/__init__.py @@ -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): diff --git a/docs/conf.py b/docs/conf.py index befb110..dd8a762 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -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. diff --git a/setup.py b/setup.py index 457d132..833491e 100644 --- a/setup.py +++ b/setup.py @@ -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"):