From bd646643a6f76b38556d3d16de4eb0d49a6d4b98 Mon Sep 17 00:00:00 2001 From: Matthias Kestenholz Date: Thu, 7 Dec 2023 15:22:27 +0100 Subject: [PATCH] django-imagefield 0.18 --- CHANGELOG.rst | 6 +++++- imagefield/__init__.py | 2 +- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index ef27f58..3c74d7d 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -6,12 +6,16 @@ Change log Next version ~~~~~~~~~~~~ +0.18 (2023-12-07) +~~~~~~~~~~~~~~~~~ + - Added Python 3.12, Django 5.0. - Added an easy way to reduce the possibility of filename collisions. Unfortunately, the hashing scheme used by default has bad uniqueness properties. It's recommended to add ``IMAGEFIELD_BIN_DEPTH = 2`` to your settings and regenerate all processed images, for example using - ``process_imagefields --all``. + ``process_imagefields --all``. The default may change in the future. For now + nothing changes, so there's no compatibility concerns. 0.17 (2023-09-25) diff --git a/imagefield/__init__.py b/imagefield/__init__.py index fd86b3e..1317d75 100644 --- a/imagefield/__init__.py +++ b/imagefield/__init__.py @@ -1 +1 @@ -__version__ = "0.17.0" +__version__ = "0.18.0"