Skip to content

Commit

Permalink
Bump verstion to 0.4.0 (#93)
Browse files Browse the repository at this point in the history
  • Loading branch information
selwin authored Jan 8, 2021
1 parent bf0a80a commit 35e42dc
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 4 deletions.
7 changes: 7 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -162,6 +162,13 @@ To run tests::
Changelog
=========
Version 0.4.0 (2021-01-08)
--------------------------
* Support for Django >= 3.0. Thanks @christianciu!
* Added `pregenerated_sizes` to `ImageField` to allow thumbnails to be pregenerated on upload. Thanks @marsha97!
* Thumbnails can be generated in different formats (e.g: JPG source image to WEBP thumbnail). Thanks @yosephbernandus!
Version 0.3.2
-------------
* Fixed another bug in `fetch_thumbnails()` bug. Thanks @marsha97!
Expand Down
6 changes: 3 additions & 3 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.3.2',
version='0.4.0',
author='Selwin Ong',
author_email='selwin.ong@gmail.com',
packages=['thumbnails'],
Expand All @@ -14,7 +14,7 @@
zip_safe=False,
include_package_data=True,
package_data={'': ['README.rst']},
install_requires=['django', 'da-vinci', 'shortuuid'],
install_requires=['django>=2.0', 'da-vinci', 'shortuuid'],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
Expand All @@ -24,9 +24,9 @@
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'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, 3, 2)
VERSION = (0, 4, 0)

0 comments on commit 35e42dc

Please # to comment.