diff --git a/CHANGELOG.rst b/CHANGELOG.rst index a00c2ea19..8ac69fc38 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,11 @@ CHANGELOG ========= +2.2.2 (2022-08-02) +================== +* Fix #1305: Install django-filer with easy-thumbnail's optional SVG support. + + 2.2.1 (2022-06-05) ================== @@ -87,6 +92,7 @@ CHANGELOG * Fix #1247: Not owned files in unfiled folder can not be listed if perms are ON. * Fix #1184: OSError close file before deletion on file move. + 2.0.2 (2020-09-10) ================== diff --git a/filer/__init__.py b/filer/__init__.py index d7ddc59fb..8cfd338a3 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__ = '2.2.1' +__version__ = '2.2.2' default_app_config = 'filer.apps.FilerConfig'