Skip to content

Commit

Permalink
Release 1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
yakky committed Aug 27, 2022
1 parent fa5425f commit 766dc6e
Show file tree
Hide file tree
Showing 6 changed files with 44 additions and 36 deletions.
11 changes: 11 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,17 @@ History

.. towncrier release notes start
1.1.0 (2022-08-27)
==================

Bugfixes
--------

- Fix error when populating the toolbar on page types (#67)
- Fixed serialization issue when trying to upload the addon to Divio Cloud. (#73)
- Add support for Django 3.2 / django CMS 3.10 (#74)


1.0.0 (2020-12-21)
==================

Expand Down
1 change: 0 additions & 1 deletion changes/67.bugfix

This file was deleted.

1 change: 0 additions & 1 deletion changes/73.bugfix

This file was deleted.

1 change: 0 additions & 1 deletion changes/74.bugfix

This file was deleted.

2 changes: 1 addition & 1 deletion djangocms_page_sitemap/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
__version__ = "1.0.0"
__version__ = "1.1.0"
__author__ = "Iacopo Spalletti <[email protected]>"
64 changes: 32 additions & 32 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
[bumpversion]
current_version = 1.0.0
current_version = 1.1.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_sitemap/__init__.py]

[metadata]
name = djangocms-page-sitemap
version = attr: djangocms_page_sitemap.__version__
url = https://github.com/nephila/djangocms-page-sitemap
project_urls =
Documentation = https://djangocms-page-sitemap.readthedocs.io/
project_urls =
Documentation = https://djangocms-page-sitemap.readthedocs.io/
author = Iacopo Spalletti
author_email = [email protected]
description = django CMS page extension to handle sitemap customization
Expand All @@ -35,27 +35,27 @@ long_description_content_type = text/x-rst
license = BSD
license_file = LICENSE
keywords = django cms, sitemap, django-app-enabler addon
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.2
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
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.2
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10

[options]
include_package_data = True
install_requires =
django-cms>=3.7
setup_requires =
setuptools
install_requires =
django-cms>=3.7
setup_requires =
setuptools
packages = djangocms_page_sitemap
python_requires = >=3.7
zip_safe = False
Expand All @@ -66,8 +66,8 @@ test_suite = cms_helper.run
djangcms_page_sitemap = *.html *.png *.gif *js *jpg *jpeg *svg *py *mo *po

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

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

0 comments on commit 766dc6e

Please sign in to comment.