diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 985d133a..cadee65d 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -8,6 +8,7 @@ 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. +* 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/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 diff --git a/tox.ini b/tox.ini index f39ffbfb..9af83cf6 100644 --- a/tox.ini +++ b/tox.ini @@ -5,6 +5,7 @@ envlist = flake8 isort py{38,39,310,311}-dj{41,42} + py{310,311}-dj{50} py{310,311}-djmain docs @@ -19,6 +20,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