From 710c7377d6894bcb0969ee34094a97a06caf84d7 Mon Sep 17 00:00:00 2001 From: Ben Lopatin Date: Tue, 19 Dec 2023 13:44:32 -0500 Subject: [PATCH 1/3] Add Django 5 support, drop 4.1 support --- tox.ini | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) 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] From 5fe4e78ab188aafe9723508d715373db05105f7b Mon Sep 17 00:00:00 2001 From: Ben Lopatin Date: Tue, 19 Dec 2023 13:45:54 -0500 Subject: [PATCH 2/3] Update README --- README.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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:: From 8fc45a893567984a246807459cad883989f1a358 Mon Sep 17 00:00:00 2001 From: Ben Lopatin Date: Tue, 19 Dec 2023 13:49:46 -0500 Subject: [PATCH 3/3] Update changelog --- AUTHORS.rst | 1 + HISTORY.rst | 4 ++++ 2 files changed, 5 insertions(+) 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 -----