diff --git a/CHANGES.rst b/CHANGES.rst index 2ab9b15d..c6ba19c2 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,3 +1,30 @@ +Version 24.1 (2024-03-08) +------------------------- + +* Updated supported Python and Django versions, and resolved upcoming Django + deprecations. + + Required versions are now at least Python 3.8 and Django 4.2. + + Thanks to Michael Manganiello. + +* Allowed passing a FilterSet class to the filterset_factory(). + + Thanks to Birger Schacht. + +* Set empty default value of filterset data to MultiValueDict. + + Thanks to Shlomo Gordon. + +* Preserve list values passed to the data dict in CSV widgets. + + Thanks to Bryan Brancotte. + +* Updates French and Ukrainian localisations. + + Thanks to Weblate. + + Version 23.5 (2023-12-05) ------------------------- diff --git a/django_filters/__init__.py b/django_filters/__init__.py index 5be169b5..227675e2 100644 --- a/django_filters/__init__.py +++ b/django_filters/__init__.py @@ -10,7 +10,7 @@ from . import rest_framework del importlib_util -__version__ = "23.5" +__version__ = "24.1" def parse_version(version):