Skip to content

Commit

Permalink
Prepare django-taggit 6.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rtpg committed Sep 28, 2024
1 parent 0cd1f24 commit 0436236
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion taggit/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
VERSION = (6, 0, 0)
VERSION = (6, 1, 0)
__version__ = ".".join(str(i) for i in VERSION)

0 comments on commit 0436236

Please sign in to comment.