diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 65c6c1b..06a2bb1 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.13.0 +current_version = 0.14.0 commit = False tag = False parse = (?P\d+)\.(?P\d+)\.(?P\d+)(\-(?P[a-z]+))? diff --git a/CHANGES.rst b/CHANGES.rst index b6c61c8..7bef6ba 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,8 +1,19 @@ -Version 0.14.0 (unreleased) +Version 0.14.0 (2016-08-14) --------------------------- * Add support for filtering on DurationField (new in Django 1.8). +* Fix UUIDFilter import issue + +* Improve FieldLookupError message + +* Add filters_for_model to improve extensibility + +* Fix limit_choices_to behavior with callables + +* Fix distinct behavior for range filters + +* Various Minor Clean up issues. Version 0.13.0 (2016-03-11) --------------------------- diff --git a/django_filters/__init__.py b/django_filters/__init__.py index eeb0868..6083b20 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.13.0' +__version__ = '0.14.0' def parse_version(version): diff --git a/docs/conf.py b/docs/conf.py index 1db554f..2b8e198 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.13.0' +version = '0.14.0' # The full version, including alpha/beta/rc tags. -release = '0.13.0' +release = '0.14.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 4f14227..3f9264a 100644 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ f = open('README.rst') readme = f.read() f.close() -version = '0.13.0' +version = '0.14.0' if sys.argv[-1] == 'publish': if os.system("pip freeze | grep wheel"):