Update Changes and Version Number for 0.15.3 release

This commit is contained in:
Carlton Gibson 2016-10-17 09:45:46 +02:00
parent 7a9caa6eb5
commit eb298ee2a6
5 changed files with 13 additions and 5 deletions

View File

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

View File

@ -1,3 +1,11 @@
Version 0.15.3 (2016-10-17)
---------------------------
Adds compatibility for DRF (3.5+) get_schema_fields filter backend
introspection.
* #492 Port get_schema_fields from DRF
Version 0.15.2 (2016-09-29)
---------------------------

View File

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