Skip to content

Commit

Permalink
Bump version to 1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
radiac committed Oct 7, 2020
1 parent 80c057c commit b73b6c9
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 16 deletions.
5 changes: 1 addition & 4 deletions README.rst
Expand Up @@ -25,10 +25,7 @@ Features
* Supports trees of nested tags, for detailed categorisation
* Admin support for managing tags and tagged models

Version 0.14.1; supports Django 1.4.2 to 2.2, on Python 2.7 and 3.2 to 3.7.

**Note**: The next release will be 1.0, the final release to support Django <2.2. This
will be followed by version 2.0 which will drop support for Django prior to 2.2.
Supports Django 1.4.2 to 2.2, on Python 2.7 and 3.2 to 3.7.


See the `Documentation <http://radiac.net/projects/django-tagulous/documentation/>`_
Expand Down
6 changes: 3 additions & 3 deletions docs/conf.py
Expand Up @@ -46,17 +46,17 @@

# General information about the project.
project = u"django-tagulous"
copyright = u"2015, Richard Terry"
copyright = u"2020, Richard Terry"
author = u"Richard Terry"

# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
# built documents.
#
# The short X.Y version.
version = "0.12"
version = "1.0"
# The full version, including alpha/beta/rc tags.
release = "0.12"
release = "1.0.0"

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 0 additions & 2 deletions docs/index.rst
Expand Up @@ -7,8 +7,6 @@ and ``ManyToManyField``, giving you all their normal power with a sprinkling of
tagging syntactic sugar, and a full set of extra
:doc:`features <introduction>`.

Version 0.14.1


.. seealso::

Expand Down
13 changes: 8 additions & 5 deletions docs/upgrading.rst
Expand Up @@ -32,20 +32,22 @@ Upgrading from 0.14.1
---------------------

Tagulous 0.14.1 was the last version to support Django 1.10 and earlier.
Tagulous 0.15.0 requires Django 1.11 or later, and Python 2.7 or 3.5 or later.
Tagulous 1.0.0 requires Django 1.11 or later, and Python 2.7 or 3.5 or later.

Tagulous 0.15.0 changes the default JavaScript adaptor to use select2 v4. This may
Tagulous 1.0.0 changes the default JavaScript adaptor to use select2 v4. This may
necessitate some styling changes on your user-facing pages if you have overridden the
default styles.

Tagulous 1.0.0 no longer allows whitespace tags in ``SingleTagField``.


.. _upgrade_0-14-0:

Upgrading from 0.14.0
---------------------

Tagulous 0.14.0 was the last version to officially support Django 1.10 or
earlier. From version 0.15.0 tests will only be run for Django 1.11 or later.
earlier.


.. _upgrade_0-13-0:
Expand Down Expand Up @@ -298,8 +300,8 @@ are available by installing the master branch from github (see



0.15.0, 2020-
------------------
1.0.0, 2020-10-08
-----------------

Feature:

Expand Down Expand Up @@ -328,6 +330,7 @@ Bugfix:
* Fix ``prefetch_related()`` on tag fields (#42)
* Correctly raise an ``IntegrityError`` when saving a tree tag without a name (#50)


Internal:

* Signals have been refactored to global handlers (instead of multiple independent
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -5,7 +5,7 @@
from setuptools import find_packages, setup


VERSION = "0.14.1"
VERSION = "1.0.0"


def read(fname):
Expand Down
2 changes: 1 addition & 1 deletion tagulous/__init__.py
Expand Up @@ -5,7 +5,7 @@
from __future__ import unicode_literals


__version__ = "0.14.1"
__version__ = "1.0.0"
__license__ = "BSD"
__author__ = "Richard Terry"
__credits__ = [
Expand Down

0 comments on commit b73b6c9

Please sign in to comment.