Skip to content

Commit

Permalink
Releasing v0.20.0
Browse files Browse the repository at this point in the history
  • Loading branch information
clintonb committed Feb 15, 2020
1 parent 45c80e5 commit f22d9c5
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CHANGES
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
Waffle Changelog
================

v0.19.1
v0.20.0
=======
- Dropped support for Python 2.7
- Removed deprecation warnings for ugettext.
Expand Down
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.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.
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down
2 changes: 1 addition & 1 deletion waffle/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'

Expand Down

0 comments on commit f22d9c5

Please sign in to comment.