Skip to content

Commit 8ac0865

Browse files
committedMar 26, 2023
Updated version and change notes for 23.1 release.
1 parent 36bb99b commit 8ac0865

File tree

3 files changed

+12
-2
lines changed

3 files changed

+12
-2
lines changed
 

‎CHANGES.rst

+10
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
Version 23.1 (2023-3-26)
2+
------------------------
3+
4+
* Declared support for Django 4.2.
5+
6+
* Various updated and new translations. Thanks to all who contributed, and
7+
Weblate for hosting.
8+
9+
* Fixed QueryArrayWidget.value_from_datadict() to not mutate input data. (#1540)
10+
111
Version 22.1 (2022-6-17)
212
------------------------
313

‎django_filters/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
from . import rest_framework
1111
del pkgutil
1212

13-
__version__ = "22.1"
13+
__version__ = "23.1"
1414

1515

1616
def parse_version(version):

‎setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
# FIXME: Main module requires django to be present, so cannot run setup.py in
77
# clean environment.
88
# from django_filters import __version__
9-
__version__ = "22.1"
9+
__version__ = "23.1"
1010

1111
f = open("README.rst")
1212
readme = f.read()

0 commit comments

Comments
 (0)
Please sign in to comment.