From 5c418245a02e3002999286db9d83aceb1bcaa5b4 Mon Sep 17 00:00:00 2001 From: "antoine@thefurnitureguys.com" Date: Wed, 19 Jun 2024 20:48:24 -0400 Subject: [PATCH 1/5] 894 - Add django 5.0 to test matrix --- CHANGELOG.rst | 4 ++++ tox.ini | 1 + 2 files changed, 5 insertions(+) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 985d133a..56022045 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -9,6 +9,10 @@ Changelog If you wish to have the old behavior, set ``ordering=[]`` to your ``TaggableManager`` instance. We believe that this should not cause a noticable performance change, and the number of queries involved should not change. +5.0.2 (2024-06-19) +~~~~~~~~~~~~~~~~~~ +* Add Django 5.0 support (no code changes were needed, but now we test this release). + 5.0.1 (2023-10-26) ~~~~~~~~~~~~~~~~~~ diff --git a/tox.ini b/tox.ini index f39ffbfb..7327d744 100644 --- a/tox.ini +++ b/tox.ini @@ -19,6 +19,7 @@ python = deps = dj41: Django>=4.1,<4.2 dj42: Django>=4.2,<5.0 + dj50: Django>=5.0,<5.1 djmain: https://github.com/django/django/archive/main.tar.gz coverage djangorestframework From 8c16c2c064005bc3bba6a237c0c74612ae5fcebc Mon Sep 17 00:00:00 2001 From: "antoine@thefurnitureguys.com" Date: Wed, 19 Jun 2024 21:48:03 -0400 Subject: [PATCH 2/5] 894 - Add dj50 to envlist --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index 7327d744..0757a5ea 100644 --- a/tox.ini +++ b/tox.ini @@ -4,7 +4,7 @@ envlist = black flake8 isort - py{38,39,310,311}-dj{41,42} + py{38,39,310,311}-dj{41,42,50} py{310,311}-djmain docs From 327e4d183127fb224f97d7ee5e116f253607a80e Mon Sep 17 00:00:00 2001 From: "antoine@thefurnitureguys.com" Date: Wed, 19 Jun 2024 21:50:33 -0400 Subject: [PATCH 3/5] 894 - Add Django 5.0 to classifiers --- setup.cfg | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.cfg b/setup.cfg index 3d777541..92bd7cfb 100644 --- a/setup.cfg +++ b/setup.cfg @@ -13,6 +13,7 @@ classifiers = Framework :: Django Framework :: Django :: 4.1 Framework :: Django :: 4.2 + Framework :: Django :: 5.0 Intended Audience :: Developers License :: OSI Approved :: BSD License Operating System :: OS Independent From 5aa078ae4e28b7b5dd1b88dff65a510f55cb25e4 Mon Sep 17 00:00:00 2001 From: "antoine@thefurnitureguys.com" Date: Wed, 19 Jun 2024 21:54:48 -0400 Subject: [PATCH 4/5] 894 - Remove django 5.0 support for python versions less than 3.10 --- tox.ini | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index 0757a5ea..9af83cf6 100644 --- a/tox.ini +++ b/tox.ini @@ -4,7 +4,8 @@ envlist = black flake8 isort - py{38,39,310,311}-dj{41,42,50} + py{38,39,310,311}-dj{41,42} + py{310,311}-dj{50} py{310,311}-djmain docs From f7493ac4f6b124d2030f9a85b81d55d4b7bca9bc Mon Sep 17 00:00:00 2001 From: Raphael Gaschignard Date: Sun, 23 Jun 2024 20:44:52 +1000 Subject: [PATCH 5/5] Remove premature version header --- CHANGELOG.rst | 3 --- 1 file changed, 3 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 56022045..cadee65d 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -8,9 +8,6 @@ Changelog The previous behavior for this was that by default tag items were not ordered. In practice tag items often end up ordered by creation date anyways, just due to how databases work, but this was not a guarantee. If you wish to have the old behavior, set ``ordering=[]`` to your ``TaggableManager`` instance. We believe that this should not cause a noticable performance change, and the number of queries involved should not change. - -5.0.2 (2024-06-19) -~~~~~~~~~~~~~~~~~~ * Add Django 5.0 support (no code changes were needed, but now we test this release). 5.0.1 (2023-10-26)