Update CHANGES and version for 1.0.1 release

This commit is contained in:
Carlton Gibson 2016-11-28 15:50:51 +01:00
parent 2ece1c1fff
commit 6eff47fab2
5 changed files with 15 additions and 5 deletions

View File

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

View File

@ -1,3 +1,13 @@
Version 1.0.1 (2016-11-28)
--------------------------
Small release to ease compatibility with DRF:
* #568 Adds ``rest_framework`` to the ``django_filters`` namespace to allow single
``import django_filters` usage.
* A number of small updates to the docs
Version 1.0 (2016-11-17)
------------------------

View File

@ -11,7 +11,7 @@ try:
except ImportError:
rest_framework = None
__version__ = '1.0.0'
__version__ = '1.0.1'
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 = '1.0.0'
version = '1.0.1'
# The full version, including alpha/beta/rc tags.
release = '1.0.0'
release = '1.0.1'
# 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 = '1.0.0'
version = '1.0.1'
if sys.argv[-1] == 'publish':
if os.system("pip freeze | grep wheel"):