Skip to content

Commit

Permalink
Prepare version 6.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rtpg committed Jul 26, 2024
1 parent c02ffe5 commit e764c3b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
3 changes: 3 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
1 change: 1 addition & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -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
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 = (5, 0, 1)
VERSION = (6, 0, 0)
__version__ = ".".join(str(i) for i in VERSION)

0 comments on commit e764c3b

Please sign in to comment.