From eb298ee2a6256b57bc049f696ac7fc734c39cdee Mon Sep 17 00:00:00 2001 From: Carlton Gibson Date: Mon, 17 Oct 2016 09:45:46 +0200 Subject: [PATCH] Update Changes and Version Number for 0.15.3 release --- .bumpversion.cfg | 2 +- CHANGES.rst | 8 ++++++++ django_filters/__init__.py | 2 +- docs/conf.py | 4 ++-- setup.py | 2 +- 5 files changed, 13 insertions(+), 5 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index c8432a9..3e15829 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.15.2 +current_version = 0.15.3 commit = False tag = False parse = (?P\d+)\.(?P\d+)\.(?P\d+)(\-(?P[a-z]+))? diff --git a/CHANGES.rst b/CHANGES.rst index a474a67..2e50925 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,3 +1,11 @@ +Version 0.15.3 (2016-10-17) +--------------------------- + +Adds compatibility for DRF (3.5+) get_schema_fields filter backend +introspection. + +* #492 Port get_schema_fields from DRF + Version 0.15.2 (2016-09-29) --------------------------- diff --git a/django_filters/__init__.py b/django_filters/__init__.py index cb72924..514ef04 100644 --- a/django_filters/__init__.py +++ b/django_filters/__init__.py @@ -3,7 +3,7 @@ from __future__ import absolute_import from .filterset import FilterSet from .filters import * -__version__ = '0.15.2' +__version__ = '0.15.3' def parse_version(version): diff --git a/docs/conf.py b/docs/conf.py index 752c549..befb110 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.2' +version = '0.15.3' # The full version, including alpha/beta/rc tags. -release = '0.15.2' +release = '0.15.3' # 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 2ee6683..457d132 100644 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ f = open('README.rst') readme = f.read() f.close() -version = '0.15.2' +version = '0.15.3' if sys.argv[-1] == 'publish': if os.system("pip freeze | grep wheel"):