Update CHANGES and version for release

This commit is contained in:
Carlton Gibson 2016-01-07 20:46:25 +01:00
parent 5388e44ddd
commit e1f40b00b4
5 changed files with 13 additions and 7 deletions

View File

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

View File

@ -1,7 +1,13 @@
Version 0.12.0 (2015-??-??)
Version 0.12.0 (2016-01-07)
---------------------------
* BREAKING CHANGE: the custom filter names are now also be used for ordering #230
* FEATURE: Add support for custom ORM lookup types #221
* FEATURE: Add JavaScript friendly BooleanWidget #270
* FIXED: (More) Compatability with Django 1.8 and Django 1.9+
* BREAKING CHANGE: custom filter names are now also be used for ordering #230
If you use ordering on a field you defined as custom filter with custom
name, you should now use the filter name as ordering key as well.

View File

@ -3,7 +3,7 @@ from __future__ import absolute_import
from .filterset import FilterSet
from .filters import *
__version__ = '0.11.0'
__version__ = '0.12.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.11.0'
version = '0.12.0'
# The full version, including alpha/beta/rc tags.
release = '0.11.0'
release = '0.12.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.11.0'
version = '0.12.0'
if sys.argv[-1] == 'publish':
if os.system("pip freeze | grep wheel"):