Skip to content

Commit

Permalink
Bump version to 0.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
selwin committed Jul 24, 2024
1 parent 9505ea8 commit aabfc7c
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 5 deletions.
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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!
Expand Down
9 changes: 5 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

setup(
name='django-thumbnails',
version='0.7.0',
version='0.8.0',
author='Selwin Ong',
author_email='[email protected]',
packages=['thumbnails'],
Expand All @@ -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',
]
Expand Down
2 changes: 1 addition & 1 deletion thumbnails/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
VERSION = (0, 7, 0)
VERSION = (0, 8, 0)

0 comments on commit aabfc7c

Please sign in to comment.