diff --git a/CHANGES.rst b/CHANGES.rst index c6ba19c2..c2169f5a 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,3 +1,11 @@ +Version 24.2 (2024-03-27) +------------------------- + +* Fixed a regression in v23.4 where callable choices were incorrectly evaluated + at filter instantiation, on Django versions prior to 5.0. + + Thanks to Craig de Stigter for the report and reproduce. + Version 24.1 (2024-03-08) ------------------------- diff --git a/django_filters/__init__.py b/django_filters/__init__.py index 227675e2..ca1f82d7 100644 --- a/django_filters/__init__.py +++ b/django_filters/__init__.py @@ -10,7 +10,7 @@ from . import rest_framework del importlib_util -__version__ = "24.1" +__version__ = "24.2" def parse_version(version):