From 250bd03f0be75cdd242b8381c64782ae99a53f81 Mon Sep 17 00:00:00 2001 From: Fabian Braun Date: Sun, 25 Aug 2024 11:46:00 +0200 Subject: [PATCH] chore: Prepare release 3.2.0 (#1491) * Fix #1377 * Bump to 3.2.0 --- CHANGELOG.rst | 12 ++++++++++++ filer/__init__.py | 2 +- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 55b601400..2ddb19915 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,18 @@ CHANGELOG ========= +3.2.0 (2024-08-23) +================== + +* feat: Add cache for permission checks by @fsbraun in https://github.com/django-cms/django-filer/pull/1486 +* fix: Reduce number of thumbnails created for admin, avoid admin thumbnails for svg files by @fsbraun in https://github.com/django-cms/django-filer/pull/1490 +* fix: Allow ``Image.MAX_IMAGE_PIXELS`` to be ``None`` by @fsbraun in https://github.com/django-cms/django-filer/pull/1475 +* docs: Update extending_filer.rst by @DmytroLitvinov in https://github.com/django-cms/django-filer/pull/1488 + +**New contributor:** + +* @DmytroLitvinov made their first contribution in https://github.com/django-cms/django-filer/pull/1488 + 3.1.4 (2024-07-15) ================== diff --git a/filer/__init__.py b/filer/__init__.py index 7bd0b5d4e..9208292c2 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.4' +__version__ = '3.2.0'