From 95dc760fd6b0a7e2769a991641c7213c05b0073d Mon Sep 17 00:00:00 2001 From: Clinton Blackburn Date: Mon, 10 Jan 2022 09:58:28 -0800 Subject: [PATCH] Releasing 2.3.0 --- CHANGES | 4 ++++ docs/conf.py | 4 ++-- setup.py | 2 +- waffle/__init__.py | 2 +- 4 files changed, 8 insertions(+), 4 deletions(-) diff --git a/CHANGES b/CHANGES index e7d98ef9..5cde91e0 100644 --- a/CHANGES +++ b/CHANGES @@ -2,6 +2,10 @@ Waffle Changelog ================ +v2.3.0 +====== +- Added support for Django 4.0 + v2.2.1 ====== - Resolved deprecation warning when using Jinja2 >= 3 diff --git a/docs/conf.py b/docs/conf.py index 19e7caca..e090cf31 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -48,9 +48,9 @@ # built documents. # # The short X.Y version. -version = '2.2' +version = '2.3' # The full version, including alpha/beta/rc tags. -release = '2.2.1' +release = '2.3.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 857b354a..ca26e3ac 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ setup( name='django-waffle', - version='2.2.1', + version='2.3.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 797ccfcc..f6976a79 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, 2, 1) +VERSION = (2, 3, 0) __version__ = '.'.join(map(str, VERSION)) if django.VERSION < (3, 2):