diff --git a/CHANGES b/CHANGES index af9b7ce4..35220be5 100644 --- a/CHANGES +++ b/CHANGES @@ -2,7 +2,7 @@ Waffle Changelog ================ -v0.19.1 +v0.20.0 ======= - Dropped support for Python 2.7 - Removed deprecation warnings for ugettext. diff --git a/docs/conf.py b/docs/conf.py index 5fe7be3d..02ebf2a6 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -48,9 +48,9 @@ # built documents. # # The short X.Y version. -version = '0.19' +version = '0.20' # The full version, including alpha/beta/rc tags. -release = '0.19.0' +release = '0.20.0' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/setup.py b/setup.py index c7bb4a1f..e6236233 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ setup( name='django-waffle', - version='0.19.0', + version='0.20.0', description='A feature flipper for Django.', long_description=open('README.rst').read(), author='James Socol', diff --git a/waffle/__init__.py b/waffle/__init__.py index 21e1f808..dea83514 100755 --- a/waffle/__init__.py +++ b/waffle/__init__.py @@ -5,7 +5,7 @@ from waffle.utils import get_setting from django.apps import apps as django_apps -VERSION = (0, 19, 0) +VERSION = (0, 20, 0) __version__ = '.'.join(map(str, VERSION)) default_app_config = 'waffle.apps.WaffleConfig'