Update CHANGES and version for 0.14 Release

This commit is contained in:
Carlton Gibson 2016-08-14 21:08:52 +02:00
parent 2715d6f315
commit 69905eb869
5 changed files with 17 additions and 6 deletions

View File

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

View File

@ -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)
---------------------------

View File

@ -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):

View File

@ -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.

View File

@ -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"):