diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 1f7d1217..e40d01e1 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -6,6 +6,14 @@ Change log `Next version`_ ~~~~~~~~~~~~~~~ + +v24.4.1 (2024-04-16) +~~~~~~~~~~~~~~~~~~~~~ + +- Forwarded cookies set by ``ApplicationContent`` apps to the final response. +- Added support for webp image formats to the media library. + + v24.4.0 (2024-04-08) ~~~~~~~~~~~~~~~~~~~~~ diff --git a/feincms/__init__.py b/feincms/__init__.py index 8edbdbb1..368aeeee 100644 --- a/feincms/__init__.py +++ b/feincms/__init__.py @@ -1,4 +1,4 @@ -VERSION = (24, 4, 0) +VERSION = (24, 4, 1) __version__ = ".".join(map(str, VERSION))