From aabfc7cb1e33794f466d2c1b1b5084e49efee6f1 Mon Sep 17 00:00:00 2001 From: Selwin Ong Date: Wed, 24 Jul 2024 15:57:32 +0700 Subject: [PATCH] Bump version to 0.8.0 --- README.md | 5 +++++ setup.py | 9 +++++---- thumbnails/__init__.py | 2 +- 3 files changed, 11 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 213de25..9266e14 100644 --- a/README.md +++ b/README.md @@ -202,6 +202,11 @@ To run tests: ## Changelog +### Version 0.8.0 (2024-07-24) +* Automatically create a `Source` image if it doesn't exist. This feature makes migrating regular `ImageField` do django-thumbnails easier. Thanks @JobDoesburg! +* Added compatibility with Python 3.13. Thanks @nZac! +* `ImageField` now supports custom `metadata` backends. Thanks @marsha97! + ### Version 0.7.0 (2022-01-03) * Compatibility with django 4.0. Thanks @yosephbernandus! diff --git a/setup.py b/setup.py index da88c18..ab19040 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ setup( name='django-thumbnails', - version='0.7.0', + version='0.8.0', author='Selwin Ong', author_email='selwin.ong@gmail.com', packages=['thumbnails'], @@ -28,9 +28,10 @@ 'Operating System :: OS Independent', 'Programming Language :: Python', 'Programming Language :: Python :: 3', - 'Programming Language :: Python :: 3.6', - 'Programming Language :: Python :: 3.7', - 'Programming Language :: Python :: 3.8', + 'Programming Language :: Python :: 3.9', + 'Programming Language :: Python :: 3.10', + 'Programming Language :: Python :: 3.11', + 'Programming Language :: Python :: 3.12', 'Topic :: Internet :: WWW/HTTP', 'Topic :: Software Development :: Libraries :: Python Modules', ] diff --git a/thumbnails/__init__.py b/thumbnails/__init__.py index 422e02d..e606342 100644 --- a/thumbnails/__init__.py +++ b/thumbnails/__init__.py @@ -1 +1 @@ -VERSION = (0, 7, 0) +VERSION = (0, 8, 0)