Skip to content

Commit

Permalink
Release 0.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
yakky committed Dec 5, 2020
1 parent d06049a commit 418df50
Show file tree
Hide file tree
Showing 6 changed files with 44 additions and 40 deletions.
10 changes: 8 additions & 2 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,16 @@
History
*******

Unreleased
.. towncrier release notes start
0.9.0 (2020-12-05)
==================

* Nothing yet
Features
--------

- Add support for Python 3.9 (#29)
- migrate from travis, drop Python 2/Django Cms 3.6 support (#10210)

0.8.0 (2019-12-27)
==================
Expand Down
1 change: 0 additions & 1 deletion changes/10210.feature

This file was deleted.

1 change: 0 additions & 1 deletion changes/29.feature

This file was deleted.

2 changes: 1 addition & 1 deletion djangocms_page_tags/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
__version__ = "0.8.1.dev1"
__version__ = "0.9.0"
__author__ = "Iacopo Spalletti <i.spalletti@nephila.it>"
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ target-version = ["py36"]
include = 'djangocms_page_tags/*py'

[tool.towncrier]
package = "djangocms-page-tags"
package = "djangocms_page_tags"
directory = "changes"
filename = "HISTORY.rst"
title_format = "{version} ({project_date})"
Expand Down
68 changes: 34 additions & 34 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
[bumpversion]
current_version = 0.8.1.dev1
current_version = 0.9.0
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\.?)(?P<release>[a-z]*)(?P<relver>\d*)
serialize =
{major}.{minor}.{patch}.{release}{relver}
{major}.{minor}.{patch}
serialize =
{major}.{minor}.{patch}.{release}{relver}
{major}.{minor}.{patch}
commit = True
tag = True
sign_tags = True
Expand All @@ -12,21 +12,21 @@ message = Release {new_version}

[bumpversion:part:release]
optional_value = gamma
values =
dev
a
b
rc
gamma
values =
dev
a
b
rc
gamma

[bumpversion:file:djangocms_page_tags/__init__.py]

[metadata]
name = djangocms-page-tags
version = attr: djangocms_page_tags.__version__
url = https://github.com/nephila/djangocms-page-tags
project_urls =
Documentation = https://djangocms-page-tags.readthedocs.io/
project_urls =
Documentation = https://djangocms-page-tags.readthedocs.io/
author = Iacopo Spalletti
author_email = i.spalletti@nephila.it
description = Tagged pages for django CMS 3
Expand All @@ -35,29 +35,29 @@ long_description_content_type = text/x-rst
license = BSD
license_file = LICENSE
keywords = djangocms-page-tags
classifiers =
Development Status :: 5 - Production/Stable
Framework :: Django
Intended Audience :: Developers
License :: OSI Approved :: BSD License
Natural Language :: English
Framework :: Django
Framework :: Django :: 2.2
Framework :: Django :: 3.0
Framework :: Django :: 3.1
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
classifiers =
Development Status :: 5 - Production/Stable
Framework :: Django
Intended Audience :: Developers
License :: OSI Approved :: BSD License
Natural Language :: English
Framework :: Django
Framework :: Django :: 2.2
Framework :: Django :: 3.0
Framework :: Django :: 3.1
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8

[options]
include_package_data = True
install_requires =
django-cms>=3.7
django-taggit>=0.11.2
django-taggit-autosuggest
django-classy-tags>=0.3.4.1
setup_requires =
setuptools
install_requires =
django-cms>=3.7
django-taggit>=0.11.2
django-taggit-autosuggest
django-classy-tags>=0.3.4.1
setup_requires =
setuptools
packages = djangocms_page_tags
python_requires = >=3.6
test_suite = cms_helper.run
Expand All @@ -68,8 +68,8 @@ zip_safe = False
djangocms_page_tags = *.html *.png *.gif *js *jpg *jpeg *svg *py *mo *po

[options.extras_require]
docs =
django<3.1
docs =
django<3.1

[upload]
repository = https://upload.pypi.org/legacy/
Expand Down

0 comments on commit 418df50

Please sign in to comment.