diff --git a/CHANGELOG.rst b/CHANGELOG.rst index ce4ec4140..cb2f3909e 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,14 @@ CHANGELOG ========= +3.1.1 (2023-11-18) +================== + +* fix: Added compatibility code in aldryn_config go support setting THUMBNAIL_DEFAULT_STORAGE in django 4.2 +* fix: address failing gulp ci jobs +* feat: Image dimensions update management command +* ci: pre-commit autoupdate + 3.1.0 (2023-10-01) ================== diff --git a/filer/__init__.py b/filer/__init__.py index 839815895..badb62cbd 100644 --- a/filer/__init__.py +++ b/filer/__init__.py @@ -13,4 +13,4 @@ 8. Publish the release and it will automatically release to pypi """ -__version__ = '3.1.0' +__version__ = '3.1.1' diff --git a/setup.py b/setup.py index 69deb6952..d7142e61e 100644 --- a/setup.py +++ b/setup.py @@ -42,6 +42,7 @@ 'Framework :: Django CMS :: 3.11', 'Framework :: Django CMS :: 4.0', 'Framework :: Django CMS :: 4.1', + 'Framework :: Django CMS :: 4.2', 'Topic :: Internet :: WWW/HTTP', 'Topic :: Internet :: WWW/HTTP :: Dynamic Content', 'Topic :: Software Development',