Skip to content

Commit be05c2c

Browse files
committed
Releasing 4.0.0
1 parent a5fb407 commit be05c2c

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

CHANGES

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

5+
v4.0.0
6+
======
7+
- Added support for Django 4.2 and Python 3.11
8+
- Dropped support for Python 3.7
9+
- Added type hints
10+
511
v3.0.0
612
======
713
- Added support for pluggable Sample and Switch models

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,9 +46,9 @@
4646
# built documents.
4747
#
4848
# The short X.Y version.
49-
version = '3.0'
49+
version = '4.0'
5050
# The full version, including alpha/beta/rc tags.
51-
release = '3.0.0'
51+
release = '4.0.0'
5252

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

waffle/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
if TYPE_CHECKING:
1313
from waffle.models import AbstractBaseFlag, AbstractBaseSample, AbstractBaseSwitch
1414

15-
__version__ = '3.0.0'
15+
__version__ = '4.0.0'
1616

1717

1818
def flag_is_active(request: HttpRequest, flag_name: str, read_only: bool = False) -> bool | None:

0 commit comments

Comments
 (0)