Skip to content

Commit

Permalink
Begin testing against Django 5.1.
Browse files Browse the repository at this point in the history
  • Loading branch information
ubernostrum committed Aug 12, 2024
1 parent 97a0c4b commit 49b7b96
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 6 deletions.
8 changes: 8 additions & 0 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,14 @@ The API stability/deprecation policy for ``pwned-passwords-django`` is as follow
Releases under DjangoVer
------------------------

Version 5.1.0
~~~~~~~~~~~~~

*Under development*

* Supported Django versions are now 4.2, 5.0, and 5.1.


Version 5.0.0
~~~~~~~~~~~~~

Expand Down
4 changes: 2 additions & 2 deletions docs/faq.rst
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ using ``pwned-passwords-django``.
What versions of Django and Python are supported?
-------------------------------------------------

``pwned-passwords-django`` |release| supports Django 4.2, and 5.0, and Python
3.8 through 3.12. See `Django's Python support matrix
``pwned-passwords-django`` |release| supports Django 4.2, 5.0, and 5.1, and
Python 3.8 through 3.12. See `Django's Python support matrix
<https://docs.djangoproject.com/en/dev/faq/install/#what-python-version-can-i-use-with-django>`_
for details of which Python versions are compatible with each version of
Django.
Expand Down
4 changes: 2 additions & 2 deletions docs/install.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
Installation guide
==================

``pwned-passwords-django`` |release| supports Django 4.2 and 5.0, and Python
3.8 through 3.12. See `Django's Python support matrix
``pwned-passwords-django`` |release| supports Django 4.2, 5.0, and 5.1, and
Python 3.8 through 3.12. See `Django's Python support matrix
<https://docs.djangoproject.com/en/dev/faq/install/#what-python-version-can-i-use-with-django>`_
for details of which Python versions are compatible with each version of
Django.
Expand Down
4 changes: 3 additions & 1 deletion noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,11 +62,13 @@ def clean(paths: typing.Iterable[os.PathLike] = ARTIFACT_PATHS) -> None:
# 3.12, skipping unsupported combinations.
(python, django)
for python in ["3.8", "3.9", "3.10", "3.11", "3.12"]
for django in ["4.2", "5.0"]
for django in ["4.2", "5.0", "5.1"]
if (python, django)
not in [
("3.8", "5.0"),
("3.9", "5.0"),
("3.8", "5.1"),
("3.9", "5.1"),
]
],
)
Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ classifiers = [
"Framework :: Django",
"Framework :: Django :: 4.2",
"Framework :: Django :: 5.0",
"Framework :: Django :: 5.1",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
Expand Down
2 changes: 1 addition & 1 deletion src/pwned_passwords_django/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@

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

__version__ = "5.0.0"
__version__ = "5.1.0a1"

0 comments on commit 49b7b96

Please sign in to comment.