From e764c3b59c19db8499caa2585c9720b982d9175f Mon Sep 17 00:00:00 2001 From: Raphael Gaschignard Date: Sat, 27 Jul 2024 09:34:40 +1000 Subject: [PATCH] Prepare version 6.0.0 --- CHANGELOG.rst | 3 +++ setup.cfg | 1 + taggit/__init__.py | 2 +- 3 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index fa42ceee..2be66e3f 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -4,6 +4,9 @@ Changelog (Unreleased) ~~~~~~~~~~~~ +6.0.0 (2024-07-27) +~~~~~~~~~~~~~~~~~~ + * By default, order tag items on instances by the primary key. This generally means that they will be ordered by "creation date" for the tag item. 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. diff --git a/setup.cfg b/setup.cfg index 92bd7cfb..eafa1a60 100644 --- a/setup.cfg +++ b/setup.cfg @@ -24,6 +24,7 @@ classifiers = Programming Language :: Python :: 3.9 Programming Language :: Python :: 3.10 Programming Language :: Python :: 3.11 + Programming Language :: Python :: 3.12 project_urls = Documentation = https://django-taggit.readthedocs.io Source = https://github.com/jazzband/django-taggit diff --git a/taggit/__init__.py b/taggit/__init__.py index 2682e192..3953f0f8 100644 --- a/taggit/__init__.py +++ b/taggit/__init__.py @@ -1,2 +1,2 @@ -VERSION = (5, 0, 1) +VERSION = (6, 0, 0) __version__ = ".".join(str(i) for i in VERSION)