diff --git a/CHANGES.rst b/CHANGES.rst index c2169f5a..3aa0f82d 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,3 +1,17 @@ +Version 24.3 (2024-08-02) +------------------------- + +* Adds official support for Django 5.1. + +* Allow using dictionaries for grouped choices on Django 5.0+. + + Thanks to Sævar Öfjörð Magnússon. + +* Adds ``unknown_field_behavior`` FilterSet option to allowing warning and + ignore behaviours for unknown field types during FilterSet generation. + + Thanks to Loes. + Version 24.2 (2024-03-27) ------------------------- diff --git a/django_filters/__init__.py b/django_filters/__init__.py index a9ad1c21..ffc0fac2 100644 --- a/django_filters/__init__.py +++ b/django_filters/__init__.py @@ -10,7 +10,7 @@ from . import rest_framework del importlib_util -__version__ = "24.2" +__version__ = "24.3" def parse_version(version):