Skip to content

Commit

Permalink
Releasing 2.4.1 (#437)
Browse files Browse the repository at this point in the history
  • Loading branch information
clintonb authored Mar 28, 2022
1 parent 856644e commit 4bb357d
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@
Waffle Changelog
================

v2.4.1
======
- Reverted: Creating missing flags for all attempts to access the missing flag

v2.4.0
======
- Preventing exceptions for template use cases where a request is not available
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
# The short X.Y version.
version = '2.4'
# The full version, including alpha/beta/rc tags.
release = '2.4.0'
release = '2.4.1'

# 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='2.4.0',
version='2.4.1',
description='A feature flipper for Django.',
long_description=open('README.rst').read(),
author='James Socol',
Expand Down
2 changes: 1 addition & 1 deletion waffle/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from waffle.utils import get_setting
from django.apps import apps as django_apps

VERSION = (2, 4, 0)
VERSION = (2, 4, 1)
__version__ = '.'.join(map(str, VERSION))

if django.VERSION < (3, 2):
Expand Down

0 comments on commit 4bb357d

Please sign in to comment.