From 9c20fca294a4f92d24b4f2ab173d869ea8548649 Mon Sep 17 00:00:00 2001 From: Carlton Gibson Date: Sun, 17 Sep 2023 10:30:52 +0200 Subject: [PATCH] Updated version and change notes for 23.3 release. --- CHANGES.rst | 7 +++++++ django_filters/__init__.py | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGES.rst b/CHANGES.rst index 4d1d863f..90eca435 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,3 +1,10 @@ +Version 23.3 (2023-9-17) +------------------------ + +* Adds initial compatibility with Django 5.0, prior to Django 5.0a1. + +* Updates packaging to use pyproject.toml and Flit. + Version 23.2 (2023-4-30) ------------------------ diff --git a/django_filters/__init__.py b/django_filters/__init__.py index ad0c4eec..c854b2c3 100644 --- a/django_filters/__init__.py +++ b/django_filters/__init__.py @@ -10,7 +10,7 @@ from . import rest_framework del pkgutil -__version__ = "23.2" +__version__ = "23.3" def parse_version(version):