diff --git a/CHANGELOG.rst b/CHANGELOG.rst index bc8367d5..409462a0 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -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). diff --git a/taggit/__init__.py b/taggit/__init__.py index aef70a7e..964ed5b8 100644 --- a/taggit/__init__.py +++ b/taggit/__init__.py @@ -1,2 +1,2 @@ -VERSION = (4, 0, 0) +VERSION = (5, 0, 0) __version__ = ".".join(str(i) for i in VERSION)