File tree Expand file tree Collapse file tree 4 files changed +7
-3
lines changed Expand file tree Collapse file tree 4 files changed +7
-3
lines changed Original file line number Diff line number Diff line change 2
2
Waffle Changelog
3
3
================
4
4
5
+ v2.4.1
6
+ ======
7
+ - Reverted: Creating missing flags for all attempts to access the missing flag
8
+
5
9
v2.4.0
6
10
======
7
11
- Preventing exceptions for template use cases where a request is not available
Original file line number Diff line number Diff line change 50
50
# The short X.Y version.
51
51
version = '2.4'
52
52
# The full version, including alpha/beta/rc tags.
53
- release = '2.4.0 '
53
+ release = '2.4.1 '
54
54
55
55
# The language for content autogenerated by Sphinx. Refer to documentation
56
56
# for a list of supported languages.
Original file line number Diff line number Diff line change 2
2
3
3
setup (
4
4
name = 'django-waffle' ,
5
- version = '2.4.0 ' ,
5
+ version = '2.4.1 ' ,
6
6
description = 'A feature flipper for Django.' ,
7
7
long_description = open ('README.rst' ).read (),
8
8
author = 'James Socol' ,
Original file line number Diff line number Diff line change 4
4
from waffle .utils import get_setting
5
5
from django .apps import apps as django_apps
6
6
7
- VERSION = (2 , 4 , 0 )
7
+ VERSION = (2 , 4 , 1 )
8
8
__version__ = '.' .join (map (str , VERSION ))
9
9
10
10
if django .VERSION < (3 , 2 ):
You can’t perform that action at this time.
0 commit comments