Skip to content

Commit

Permalink
Prepare release (#767)
Browse files Browse the repository at this point in the history
This is version 2.0.0 because of an API compatibility change.
  • Loading branch information
rtpg committed Nov 14, 2021
1 parent 13fdd25 commit cfca412
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 @@ -4,6 +4,9 @@ Changelog
(Unreleased)
~~~~~~~~~~~~

2.0.0 (2021-11-14)
~~~~~~~~~~~~~~~~~~

* **Backwards incompatible:** ``TaggableManager.set`` now takes a list of tags
(instead of varargs) so that its API matches Django's ``RelatedManager.set``. Example:

Expand Down
2 changes: 1 addition & 1 deletion taggit/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# setup.py and docs do not have Django installed.
django = None

VERSION = (1, 5, 1)
VERSION = (2, 0, 0)
__version__ = ".".join(str(i) for i in VERSION)

if django and django.VERSION < (3, 2):
Expand Down

0 comments on commit cfca412

Please sign in to comment.