Skip to content

Commit 49b7b96

Browse files
committed
Begin testing against Django 5.1.
1 parent 97a0c4b commit 49b7b96

File tree

6 files changed

+17
-6
lines changed

6 files changed

+17
-6
lines changed

docs/changelog.rst

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,14 @@ The API stability/deprecation policy for ``pwned-passwords-django`` is as follow
6464
Releases under DjangoVer
6565
------------------------
6666

67+
Version 5.1.0
68+
~~~~~~~~~~~~~
69+
70+
*Under development*
71+
72+
* Supported Django versions are now 4.2, 5.0, and 5.1.
73+
74+
6775
Version 5.0.0
6876
~~~~~~~~~~~~~
6977

docs/faq.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ using ``pwned-passwords-django``.
1111
What versions of Django and Python are supported?
1212
-------------------------------------------------
1313

14-
``pwned-passwords-django`` |release| supports Django 4.2, and 5.0, and Python
15-
3.8 through 3.12. See `Django's Python support matrix
14+
``pwned-passwords-django`` |release| supports Django 4.2, 5.0, and 5.1, and
15+
Python 3.8 through 3.12. See `Django's Python support matrix
1616
<https://docs.djangoproject.com/en/dev/faq/install/#what-python-version-can-i-use-with-django>`_
1717
for details of which Python versions are compatible with each version of
1818
Django.

docs/install.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
Installation guide
55
==================
66

7-
``pwned-passwords-django`` |release| supports Django 4.2 and 5.0, and Python
8-
3.8 through 3.12. See `Django's Python support matrix
7+
``pwned-passwords-django`` |release| supports Django 4.2, 5.0, and 5.1, and
8+
Python 3.8 through 3.12. See `Django's Python support matrix
99
<https://docs.djangoproject.com/en/dev/faq/install/#what-python-version-can-i-use-with-django>`_
1010
for details of which Python versions are compatible with each version of
1111
Django.

noxfile.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,11 +62,13 @@ def clean(paths: typing.Iterable[os.PathLike] = ARTIFACT_PATHS) -> None:
6262
# 3.12, skipping unsupported combinations.
6363
(python, django)
6464
for python in ["3.8", "3.9", "3.10", "3.11", "3.12"]
65-
for django in ["4.2", "5.0"]
65+
for django in ["4.2", "5.0", "5.1"]
6666
if (python, django)
6767
not in [
6868
("3.8", "5.0"),
6969
("3.9", "5.0"),
70+
("3.8", "5.1"),
71+
("3.9", "5.1"),
7072
]
7173
],
7274
)

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ classifiers = [
1212
"Framework :: Django",
1313
"Framework :: Django :: 4.2",
1414
"Framework :: Django :: 5.0",
15+
"Framework :: Django :: 5.1",
1516
"Intended Audience :: Developers",
1617
"License :: OSI Approved :: BSD License",
1718
"Operating System :: OS Independent",

src/pwned_passwords_django/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@
55

66
# SPDX-License-Identifier: BSD-3-Clause
77

8-
__version__ = "5.0.0"
8+
__version__ = "5.1.0a1"

0 commit comments

Comments
 (0)