From 6eff47fab2cf4c9b998b10544b052c959d28f0dd Mon Sep 17 00:00:00 2001 From: Carlton Gibson Date: Mon, 28 Nov 2016 15:50:51 +0100 Subject: [PATCH] Update CHANGES and version for 1.0.1 release --- .bumpversion.cfg | 2 +- CHANGES.rst | 10 ++++++++++ django_filters/__init__.py | 2 +- docs/conf.py | 4 ++-- setup.py | 2 +- 5 files changed, 15 insertions(+), 5 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 14336f4..b073f86 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.0.0 +current_version = 1.0.1 commit = False tag = False parse = (?P\d+)\.(?P\d+)\.(?P\d+)(\-(?P[a-z]+))? diff --git a/CHANGES.rst b/CHANGES.rst index 726cfd8..9978a5b 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,3 +1,13 @@ +Version 1.0.1 (2016-11-28) +-------------------------- + +Small release to ease compatibility with DRF: + +* #568 Adds ``rest_framework`` to the ``django_filters`` namespace to allow single + ``import django_filters` usage. +* A number of small updates to the docs + + Version 1.0 (2016-11-17) ------------------------ diff --git a/django_filters/__init__.py b/django_filters/__init__.py index b9f9281..0467a96 100644 --- a/django_filters/__init__.py +++ b/django_filters/__init__.py @@ -11,7 +11,7 @@ try: except ImportError: rest_framework = None -__version__ = '1.0.0' +__version__ = '1.0.1' def parse_version(version): diff --git a/docs/conf.py b/docs/conf.py index dd8a762..ff177bf 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 = '1.0.0' +version = '1.0.1' # The full version, including alpha/beta/rc tags. -release = '1.0.0' +release = '1.0.1' # 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 833491e..997dedc 100644 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ f = open('README.rst') readme = f.read() f.close() -version = '1.0.0' +version = '1.0.1' if sys.argv[-1] == 'publish': if os.system("pip freeze | grep wheel"):