From 920a79ff401eb87946a2a6593bee767a7cfb2fa0 Mon Sep 17 00:00:00 2001 From: Carlton Gibson Date: Wed, 27 Mar 2024 10:46:48 +0100 Subject: [PATCH] Bumped version and changes for 24.2 release. --- CHANGES.rst | 8 ++++++++ django_filters/__init__.py | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) 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):