diff --git a/CHANGES b/CHANGES index 4931d43d..7cbfb80b 100644 --- a/CHANGES +++ b/CHANGES @@ -2,6 +2,9 @@ Waffle Changelog ================ +v2.7.0 +====== +- Exposed JSON endpoint for Waffle flag/switch/sample state v2.6.0 ====== diff --git a/docs/conf.py b/docs/conf.py index 3054fd32..597b64a8 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -48,9 +48,9 @@ # built documents. # # The short X.Y version. -version = '2.6' +version = '2.7' # The full version, including alpha/beta/rc tags. -release = '2.6.0' +release = '2.7.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 b0283525..5ae93959 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ setup( name='django-waffle', - version='2.6.0', + version='2.7.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 0d009db9..9cb65c9e 100755 --- a/waffle/__init__.py +++ b/waffle/__init__.py @@ -4,7 +4,7 @@ from waffle.utils import get_setting from django.apps import apps as django_apps -VERSION = (2, 6, 0) +VERSION = (2, 7, 0) __version__ = '.'.join(map(str, VERSION)) if django.VERSION < (3, 2):