Skip to content

Commit

Permalink
Prepare Taggit 5.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rtpg committed Oct 24, 2023
1 parent e10c762 commit fa7e698
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ Changelog

(Unreleased)
~~~~~~~~~~~~

5.0.0 (2023-10-24)
~~~~~~~~~~~~~~~~~~
* **Backwards icompatible:** Rename the (``content_type``, ``object_id``) index on ``TaggedItem``.
It is very unlikely for this to affect your code itself, and a migration will rename the index. This should not cause any downtime according to my research (Postgres does not lock the table for index renames, and Oracle holds a tiny lock to do it, and the change is only to the metadata, so is not dependent on table size).

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 = (4, 0, 0)
VERSION = (5, 0, 0)
__version__ = ".".join(str(i) for i in VERSION)

0 comments on commit fa7e698

Please sign in to comment.