diff --git a/CHANGES b/CHANGES index 30c4d5a1..5fced7cc 100644 --- a/CHANGES +++ b/CHANGES @@ -2,6 +2,13 @@ Waffle Changelog ================ +v4.2.0 +====== +- Joined Jazzband (https://jazzband.co/) +- Linting improvements and cleanups +- Added support for Django 5.0 and 5.1 +- Added support for Python 3.13 + v4.1.0 ====== - Updated `is_active_for_user` method to account for `everyone` option diff --git a/docs/conf.py b/docs/conf.py index f65dc044..06d55864 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -47,9 +47,9 @@ # built documents. # # The short X.Y version. -version = '4.1' +version = '4.2' # The full version, including alpha/beta/rc tags. -release = '4.1.0' +release = '4.2.0' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/waffle/__init__.py b/waffle/__init__.py index 5e979ca3..6c706d8a 100755 --- a/waffle/__init__.py +++ b/waffle/__init__.py @@ -11,7 +11,7 @@ if TYPE_CHECKING: from waffle.models import AbstractBaseFlag, AbstractBaseSample, AbstractBaseSwitch -__version__ = '4.1.0' +__version__ = '4.2.0' def flag_is_active(request: HttpRequest, flag_name: str, read_only: bool = False) -> bool | None: