diff --git a/README.rst b/README.rst
index 10ab74d..493c09b 100644
--- a/README.rst
+++ b/README.rst
@@ -51,9 +51,6 @@ Compatibility
- `Django REST Framework `_:
- - 3.11.x
- - 3.12.x
- - 3.13.x
- 3.14.x
Documentation
diff --git a/docs/index.rst b/docs/index.rst
index 1e5ddca..b8377c3 100644
--- a/docs/index.rst
+++ b/docs/index.rst
@@ -78,6 +78,12 @@ Table of Contents
Release Notes
=============
+3.1
+^^^
+- If available when resizing, ``Image.Resampling.LANCZOS`` will be used instead of ``Image.ANTIALIAS``. Thanks, `@alexei `_!
+- Removed support for djangorestframework < 3.14.x.
+- Added support for Django 5.0.
+
3.0
^^^
- Removed support for Django < 3.x. Thanks, `@browniebroke `_!
diff --git a/docs/installation.rst b/docs/installation.rst
index c7f26b5..2ecf4fb 100644
--- a/docs/installation.rst
+++ b/docs/installation.rst
@@ -28,7 +28,7 @@ Django Compatibility
Dependencies
------------
-- ``Pillow``>= 2.4.x
+- ``Pillow``>= 6.2.x
``django-versatileimagefield`` depends on the excellent
`Pillow `__ fork of ``PIL``. If you
diff --git a/setup.py b/setup.py
index e61850f..906796c 100644
--- a/setup.py
+++ b/setup.py
@@ -5,7 +5,7 @@
setup(
name='django-versatileimagefield',
packages=find_packages(),
- version='3.0',
+ version='3.1',
author='Jonathan Ellenberger',
author_email='jonathan_ellenberger@wgbh.org',
url='http://github.com/respondcreate/django-versatileimagefield/',
@@ -16,7 +16,7 @@
long_description=open('README.rst').read(),
zip_safe=False,
install_requires=[
- 'Pillow>=2.4.0',
+ 'Pillow>=6.2.0',
'python-magic>=0.4.22,<1.0.0',
'Django>=3.0',
],
@@ -33,6 +33,7 @@
'Framework :: Django :: 3.2',
'Framework :: Django :: 4.0',
'Framework :: Django :: 4.1',
+ 'Framework :: Django :: 5.0',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',