This commit is contained in:
Carlton Gibson 2015-01-23 14:52:27 +01:00
parent a4cbe669ef
commit 13d4fe30e5
5 changed files with 10 additions and 5 deletions

View File

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

View File

@ -1,3 +1,8 @@
Version 0.9.2 (2015-01-23)
--------------------------
* FIXED: Compatibility with Django v1.8a1
Version 0.9.1 (2014-12-03)
--------------------------

View File

@ -3,7 +3,7 @@ from __future__ import absolute_import
from .filterset import FilterSet
from .filters import *
__version__ = '0.9.1'
__version__ = '0.9.2'
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.9.1'
version = '0.9.2'
# The full version, including alpha/beta/rc tags.
release = '0.9.1'
release = '0.9.2'
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.

View File

@ -16,7 +16,7 @@ if sys.argv[-1] == 'publish':
setup(
name='django-filter',
version='0.9.1',
version='0.9.2',
description=('Django-filter is a reusable Django application for allowing'
' users to filter querysets dynamically.'),
long_description=readme,