From 0436236a9df451b48c4b6d1889c2d8e92167a2ab Mon Sep 17 00:00:00 2001 From: Raphael Gaschignard Date: Sun, 29 Sep 2024 09:04:21 +1000 Subject: [PATCH] Prepare django-taggit 6.1.0 --- CHANGELOG.rst | 4 ++++ taggit/__init__.py | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 84ba2a43..71259e7d 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -3,6 +3,10 @@ Changelog (Unreleased) ~~~~~~~~~~~~ + +6.1.0 (2024-09-29) +~~~~~~~~~~~~~~~~~~ + * Add a management command (``remove_orphaned_tags``) to remove orphaned tags * Add a fallback for when multiple tags are found in case-insensitivity mode (the earliest by PK is returned) * Add a ``deduplicate_tags`` management command to remove duplicate tags based on case insensitivity. This feature is enabled when ``TAGGIT_CASE_INSENSITIVE`` is set to ``True`` in the settings. diff --git a/taggit/__init__.py b/taggit/__init__.py index 3953f0f8..04327c35 100644 --- a/taggit/__init__.py +++ b/taggit/__init__.py @@ -1,2 +1,2 @@ -VERSION = (6, 0, 0) +VERSION = (6, 1, 0) __version__ = ".".join(str(i) for i in VERSION)