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)