Skip to content

Commit 4bb357d

Browse files
authored
Releasing 2.4.1 (django-waffle#437)
1 parent 856644e commit 4bb357d

File tree

4 files changed

+7
-3
lines changed

4 files changed

+7
-3
lines changed

CHANGES

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22
Waffle Changelog
33
================
44

5+
v2.4.1
6+
======
7+
- Reverted: Creating missing flags for all attempts to access the missing flag
8+
59
v2.4.0
610
======
711
- Preventing exceptions for template use cases where a request is not available

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
# The short X.Y version.
5151
version = '2.4'
5252
# The full version, including alpha/beta/rc tags.
53-
release = '2.4.0'
53+
release = '2.4.1'
5454

5555
# The language for content autogenerated by Sphinx. Refer to documentation
5656
# for a list of supported languages.

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
setup(
44
name='django-waffle',
5-
version='2.4.0',
5+
version='2.4.1',
66
description='A feature flipper for Django.',
77
long_description=open('README.rst').read(),
88
author='James Socol',

waffle/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
from waffle.utils import get_setting
55
from django.apps import apps as django_apps
66

7-
VERSION = (2, 4, 0)
7+
VERSION = (2, 4, 1)
88
__version__ = '.'.join(map(str, VERSION))
99

1010
if django.VERSION < (3, 2):

0 commit comments

Comments
 (0)