diff --git a/CHANGELOG.rst b/CHANGELOG.rst index c7bde06d..27a68900 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -6,6 +6,14 @@ Change log `Next version`_ ~~~~~~~~~~~~~~~ +v24.4.0 (2024-04-08) +~~~~~~~~~~~~~~~~~~~~~ + +- Fetched the CSRF token value from the input field instead of from the cookie. + This allows making the CSRF cookie ``httponly``. Thanks to Samuel Lin for the + contribution! + + v23.12.0 (2023-12-22) ~~~~~~~~~~~~~~~~~~~~~ diff --git a/feincms/__init__.py b/feincms/__init__.py index 944fd8de..8edbdbb1 100644 --- a/feincms/__init__.py +++ b/feincms/__init__.py @@ -1,4 +1,4 @@ -VERSION = (23, 12, 0) +VERSION = (24, 4, 0) __version__ = ".".join(map(str, VERSION))