Skip to content

Commit

Permalink
Updated version and change notes for 23.1 release.
Browse files Browse the repository at this point in the history
  • Loading branch information
carltongibson committed Mar 26, 2023
1 parent 36bb99b commit 8ac0865
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 2 deletions.
10 changes: 10 additions & 0 deletions CHANGES.rst
@@ -1,3 +1,13 @@
Version 23.1 (2023-3-26)
------------------------

* Declared support for Django 4.2.

* Various updated and new translations. Thanks to all who contributed, and
Weblate for hosting.

* Fixed QueryArrayWidget.value_from_datadict() to not mutate input data. (#1540)

Version 22.1 (2022-6-17)
------------------------

Expand Down
2 changes: 1 addition & 1 deletion django_filters/__init__.py
Expand Up @@ -10,7 +10,7 @@
from . import rest_framework
del pkgutil

__version__ = "22.1"
__version__ = "23.1"


def parse_version(version):
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -6,7 +6,7 @@
# FIXME: Main module requires django to be present, so cannot run setup.py in
# clean environment.
# from django_filters import __version__
__version__ = "22.1"
__version__ = "23.1"

f = open("README.rst")
readme = f.read()
Expand Down

0 comments on commit 8ac0865

Please sign in to comment.