Skip to content

Commit

Permalink
Releasing v0.16.0
Browse files Browse the repository at this point in the history
  • Loading branch information
clintonb committed Apr 4, 2019
1 parent 5733b0c commit d88ea9c
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 5 deletions.
12 changes: 12 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,18 @@
Waffle Changelog
================

v0.16.0
=======
- Added support for Django 2.1 and 2.2
- Flushing cache after modifying flags' groups and users
- Removed redundant log line
- Corrected version in `waffle/__init__.py`
- Fixed bug in tests
- Using strings as cache keys instead of bytes
- Passing effects of test decorator to child classes
-- NOTE: This introduced a backwards-incompatible change for the testutils override decorators.
See https://github.com/django-waffle/django-waffle/pull/331 for details.

v0.15.1
=======
- Optionally logging missing flags, samples, and switches
Expand Down
1 change: 1 addition & 0 deletions RELEASING.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ These are the steps necessary to release a new version of Django Waffle.

a. `setup.py`
b. `docs/conf.py`
c. `waffle/__init__.py`

2. Update the changelog in `CHANGES`.

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.15'
version = '0.16'
# The full version, including alpha/beta/rc tags.
release = '0.15.1'
release = '0.16.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.15.1',
version='0.16.0',
description='A feature flipper for Django.',
long_description=open('README.rst').read(),
author='James Socol',
Expand Down
2 changes: 1 addition & 1 deletion travis.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ mock==1.3.0
Jinja2>=2.7.1
dj-database-url==0.5.0
django-jinja>=2.1,<3
psycopg2>=2.7.5
psycopg2-binary>=2.7.7

transifex-client
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, 15, 2)
VERSION = (0, 16, 0)
__version__ = '.'.join(map(str, VERSION))
default_app_config = 'waffle.apps.WaffleConfig'

Expand Down

0 comments on commit d88ea9c

Please sign in to comment.