diff --git a/CHANGES.rst b/CHANGES.rst index 90eca435..03804d75 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,3 +1,14 @@ +Version 23.4 (2023-11-20) +------------------------- + +* Official support for Django 5.0 and Python 3.12. + +* Fix DeprecationWarning for pkgutil.find_loader. + + Thanks to `wmorrell`. + +* Adopted Furo theme for docs. + Version 23.3 (2023-9-17) ------------------------ diff --git a/django_filters/__init__.py b/django_filters/__init__.py index 3586f660..325777b6 100644 --- a/django_filters/__init__.py +++ b/django_filters/__init__.py @@ -10,7 +10,7 @@ from . import rest_framework del importlib_util -__version__ = "23.3" +__version__ = "23.4" def parse_version(version): diff --git a/pyproject.toml b/pyproject.toml index 7fe2083b..e58d7c67 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -20,6 +20,7 @@ classifiers = [ "Framework :: Django :: 4.0", "Framework :: Django :: 4.1", "Framework :: Django :: 4.2", + "Framework :: Django :: 5.0", "Programming Language :: Python", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.7", @@ -27,6 +28,7 @@ classifiers = [ "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", ] requires-python = ">=3.7" dependencies = ["Django>=3.2"]