diff --git a/CHANGELOG.rst b/CHANGELOG.rst index cb2f3909e..03035ec42 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,19 @@ CHANGELOG ========= +3.1.2 (2025-05-17) +================== + +* Made the filer check command compatible with custom image models. +* Use the final image model's app label to determine the expand view URL. +* Prepare the image expand URL in the admin code and pass it through to the template via context. +* Fix #1377: Field `verbose_name` should use `gettext_lazy`. +* Fix: styles for django 4.2+ admin. +* Fix: Unintended scroll when clearing file widget. +* Fix: Method `ImageAdminForm.clean_subject_location()` not implemented correctly causing invokation + of `clean()` twice. + + 3.1.1 (2023-11-18) ================== diff --git a/filer/__init__.py b/filer/__init__.py index badb62cbd..d21131377 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.1' +__version__ = '3.1.2'