Skip to content

Commit

Permalink
Prepare for the next release
Browse files Browse the repository at this point in the history
  • Loading branch information
jdufresne committed Dec 4, 2019
1 parent ceb65b7 commit 44aa525
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 8 deletions.
15 changes: 10 additions & 5 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,11 +1,16 @@
Changelog
=========

UNRELEASED
~~~~~~~~~~

* Moved TaggedItemBase.tags_for() to ItemBase.
* Removed support for end-of-life Django 2.0.
1.2.0 (2019-12-03)
~~~~~~~~~~--------

* **Removed** support for end-of-life Django 2.0 and 2.1.
* Added support for Django 3.0.
* Added support for Python 3.8.
* Moved ``TaggedItemBase.tags_for()`` to ItemBase.
* Replaced reference to removed Django's ``.virtual_fields`` with
``.private_field``.
* Added ``TextareaTagWidget``.

1.1.0 (2019-03-22)
~~~~~~~~~~~~~~~~~~
Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
copyright = "Alex Gaynor and individual contributors."

# The short X.Y version.
version = "1.1"
version = "1.2"
# The full version, including alpha/beta/rc tags.
release = "1.1.0"
release = "1.2.0"

intersphinx_mapping = {
"django": (
Expand Down
2 changes: 1 addition & 1 deletion taggit/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION = (1, 1, 0)
VERSION = (1, 2, 0)
__version__ = ".".join(str(i) for i in VERSION)

default_app_config = "taggit.apps.TaggitAppConfig"

0 comments on commit 44aa525

Please sign in to comment.