diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 4f9f82225..25308b980 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,9 +2,11 @@ CHANGELOG ========= -unreleased -========== +3.0.2 (2023-07-17) +================== +* Fix another bug when the the thumbnailer in admin tags crashes because of + invalid or missing file * Ensure action buttons in directory listing do not get disabled after using cancel or back button if files or folders are selected. diff --git a/filer/__init__.py b/filer/__init__.py index 022a1d312..6d48b1926 100644 --- a/filer/__init__.py +++ b/filer/__init__.py @@ -13,6 +13,6 @@ 8. Publish the release and it will automatically release to pypi """ -__version__ = '3.0.1' +__version__ = '3.0.2' default_app_config = 'filer.apps.FilerConfig'