diff --git a/AUTHORS.rst b/AUTHORS.rst index a67e44f..08e9fef 100644 --- a/AUTHORS.rst +++ b/AUTHORS.rst @@ -25,6 +25,7 @@ Contributors: * `Seb Vetter `_ * `KimSia Sim `_ * `Dan Moore `_ +* `Sky `_ If your name is missing as a contributor that's my oversight, let me know at ben@benlopatin.com diff --git a/HISTORY.rst b/HISTORY.rst index de5702d..06ebd0b 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -3,10 +3,14 @@ History ======= + 2.4.0 ----- * Adopted Hatch as packaging tool with pyproject.toml +* Updated Japanese translations (thanks @skyarrow87!) +* Officially add support for Django 5.0 +* Drop support for Django 4.1 (Django 3.2 LTS and Django 4.2 LTS are still actively tested against) 2.3.1 ----- diff --git a/README.rst b/README.rst index 614f667..acd588e 100644 --- a/README.rst +++ b/README.rst @@ -89,8 +89,8 @@ Targets & testing The codebase is targeted and tested against: * Django 3.2.x against Python 3.8, 3.9, 3.10 -* Django 4.1.x against Python 3.8, 3.9, 3.10, 3.11 * Django 4.2.x against Python 3.8, 3.9, 3.10, 3.11, 3.12 +* Django 5.0.x against Python 3.10, 3.11, 3.12 To run the tests against all target environments, install `tox `_ and then execute the command:: diff --git a/tox.ini b/tox.ini index 74c8c8b..51dd1b3 100644 --- a/tox.ini +++ b/tox.ini @@ -2,9 +2,8 @@ envlist = flake8, py{38,39,310}-django{32}, - py{38,39,310,311}-django{41}, - py{38,39,310,311}-django{42}, - py{312}-django{42} + py{38,39}-django{42}, + py{310,311,312}-django{42,50} [gh-actions] python = @@ -32,8 +31,8 @@ basepython = deps = hatch>=1.7.0 django32: Django>=3.2,<4 - django41: Django>=4.1,<4.2 django42: Django>=4.2,<4.3 + django50: Django>=5.0,<5.1 extras = tests [testenv:flake8]