Skip to content

Commit

Permalink
Merge pull request #201 from alex/develop
Browse files Browse the repository at this point in the history
Version 0.9.1 Release
  • Loading branch information
Carlton Gibson committed Dec 3, 2014
2 parents b93391e + 138ce03 commit 2876348
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.9.0
current_version = 0.9.1
commit = False
tag = False
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\-(?P<release>[a-z]+))?
Expand Down
5 changes: 5 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
Version 0.9.1 (2014-12-03)
--------------------------

* FIXED: Compatibility with Debug Toolbar's versions panel

Version 0.9 (2014-11-28)
------------------------

Expand Down
6 changes: 3 additions & 3 deletions django_filters/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
from .filterset import FilterSet
from .filters import *

__version__ = '0.9.0'
__version__ = '0.9.1'


def get_version(version):
def parse_version(version):
'''
'0.1.2-dev' -> (0, 1, 2, 'dev')
'0.1.2' -> (0, 1, 2)
Expand All @@ -21,4 +21,4 @@ def get_version(version):
ret.append(p)
return tuple(ret)

VERSION = get_version(__version__)
VERSION = parse_version(__version__)
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,9 @@
# built documents.
#
# The short X.Y version.
version = '0.9.0'
version = '0.9.1'
# The full version, including alpha/beta/rc tags.
release = '0.9.0'
release = '0.9.1'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

setup(
name='django-filter',
version='0.9.0',
version='0.9.1',
description=('Django-filter is a reusable Django application for allowing'
' users to filter querysets dynamically.'),
long_description=readme,
Expand Down

0 comments on commit 2876348

Please sign in to comment.