diff --git a/CHANGELOG.rst b/CHANGELOG.rst index daf1d3e..1acb046 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,23 @@ Changelog: ========== +v1.12 (2025-04-22) +------------------ + +- Make ``remove_file_from_disk()`` use Django's ``default_storage`` which + should make this function work not only with ``FileSystemStorage`` but also + with cloud providers like AWS S3 for example +- Update test matrix + - add Django 5.1 + - add Django 5.2 + - remove Django 3.2 + - remove Django 4.0 + - remove Django 4.1 + - add Python 3.12 + - add Python 3.13 + - use psycopg 3 + + v1.11 (2023-04-20) ------------------ diff --git a/setup.cfg b/setup.cfg index 4e9c7d6..f1e62f6 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = django-attachments -version = 1.11 +version = 1.12 description = django-attachments is generic Django application to attach Files (Attachments) to any model. long_description = file: README.rst, CHANGELOG.rst author = Martin Mahner