From 96a580f7f7fa078ec8179c527b519880bd1b48db Mon Sep 17 00:00:00 2001 From: Clinton Blackburn Date: Sun, 5 Jun 2022 09:38:03 -0700 Subject: [PATCH] Releasing 2.5.0 --- CHANGES | 6 ++++++ docs/conf.py | 4 ++-- setup.py | 2 +- waffle/__init__.py | 2 +- 4 files changed, 10 insertions(+), 4 deletions(-) diff --git a/CHANGES b/CHANGES index 210c5ecb..7d5ff932 100644 --- a/CHANGES +++ b/CHANGES @@ -2,6 +2,12 @@ Waffle Changelog ================ + +v2.5.0 +====== +- Corrected error in docs +- Added setting to support disabling admin pages + v2.4.1 ====== - Reverted: Creating missing flags for all attempts to access the missing flag diff --git a/docs/conf.py b/docs/conf.py index 394a9b6e..226c74e0 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -48,9 +48,9 @@ # built documents. # # The short X.Y version. -version = '2.4' +version = '2.5' # The full version, including alpha/beta/rc tags. -release = '2.4.1' +release = '2.5.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 856fc9ea..02e996ef 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ setup( name='django-waffle', - version='2.4.1', + version='2.5.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 3bb495d9..c4066b9b 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, 4, 1) +VERSION = (2, 5, 0) __version__ = '.'.join(map(str, VERSION)) if django.VERSION < (3, 2):