Skip to content

Commit

Permalink
Releasing 4.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
clintonb committed Jul 26, 2023
1 parent a5fb407 commit be05c2c
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
6 changes: 6 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@
Waffle Changelog
================

v4.0.0
======
- Added support for Django 4.2 and Python 3.11
- Dropped support for Python 3.7
- Added type hints

v3.0.0
======
- Added support for pluggable Sample and Switch models
Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,9 @@
# built documents.
#
# The short X.Y version.
version = '3.0'
version = '4.0'
# The full version, including alpha/beta/rc tags.
release = '3.0.0'
release = '4.0.0'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion waffle/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
if TYPE_CHECKING:
from waffle.models import AbstractBaseFlag, AbstractBaseSample, AbstractBaseSwitch

__version__ = '3.0.0'
__version__ = '4.0.0'


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

0 comments on commit be05c2c

Please sign in to comment.