diff --git a/CHANGELOG.md b/CHANGELOG.md index 5e95dd0..581bff0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,10 @@ adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] +### Added + +- Django 6.0 has been added to the test matrix. + ### Fixed - Ensure cleanup actions in `durable` always happen when the wrapped code raises an unexpected error. diff --git a/README.md b/README.md index c050b3f..303bf3a 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ Splits Django's `atomic` into a suite of more specific utilities. This package supports sensible combinations of: - Python 3.12, 3.13, 3.14. -- Django 4.2, 5.1, 5.2. +- Django 4.2, 5.1, 5.2, 6.0. ### Installation diff --git a/tox.ini b/tox.ini index d7859b6..4cb6593 100644 --- a/tox.ini +++ b/tox.ini @@ -3,7 +3,7 @@ requires = tox>=4 env_list = - py3{12,13,14}-django{42,51,52} + py3{12,13,14}-django{42,51,52,60} coverage mypy @@ -26,13 +26,14 @@ deps = django42: django~=4.2.0 django51: django~=5.1.0 django52: django~=5.2.0 + django60: django~=6.0.0 commands = coverage run --parallel -m pytest {posargs} [testenv:coverage] depends = - py3{12,13,14}-django{42,51,52} + py3{12,13,14}-django{42,51,52,60} dependency_groups = coverage