Skip to content

Commit

Permalink
Merge pull request #910 from jazzband/prepare-release
Browse files Browse the repository at this point in the history
Prepare version 6.0.0
  • Loading branch information
rtpg authored Jul 29, 2024
2 parents c02ffe5 + e764c3b commit ffa9d60
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 ffa9d60

Please sign in to comment.