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 446fec3 commit e4fb67c
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 11 deletions.
10 changes: 10 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,16 @@ History

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

Bugfixes
--------

- Skip creating toolbar item in page types (#150)
- Add support for Django 3.2 / django CMS 3.10 (#151)


1.0.1 (2020-12-21)
==================

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

This file was deleted.

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

This file was deleted.

2 changes: 1 addition & 1 deletion djangocms_page_meta/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "1.0.1"
__version__ = "1.1.0"
__author__ = "Iacopo Spalletti <i.spalletti@nephila.digital>"

default_app_config = "djangocms_page_meta.apps.PageMetaConfig"
16 changes: 8 additions & 8 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[bumpversion]
current_version = 1.0.1
current_version = 1.1.0
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\.?)(?P<release>[a-z]*)(?P<relver>\d*)
serialize =
serialize =
{major}.{minor}.{patch}.{release}{relver}
{major}.{minor}.{patch}
commit = True
Expand All @@ -12,7 +12,7 @@ message = Release {new_version}

[bumpversion:part:release]
optional_value = gamma
values =
values =
dev
a
b
Expand All @@ -25,7 +25,7 @@ values =
name = djangocms-page-meta
version = attr: djangocms_page_meta.__version__
url = https://github.com/nephila/djangocms-page-meta
project_urls =
project_urls =
Documentation = https://djangocms-page-meta.readthedocs.io/
author = Iacopo Spalletti
author_email = i.spalletti@nephila.digital
Expand All @@ -35,7 +35,7 @@ long_description_content_type = text/x-rst
license = BSD
license_file = LICENSE
keywords = django cms, meta tags, OpenGraph, Twitter Cards, Schema.org, django-app-enabler addon
classifiers =
classifiers =
Development Status :: 5 - Production/Stable
Framework :: Django
Intended Audience :: Developers
Expand All @@ -52,11 +52,11 @@ classifiers =

[options]
include_package_data = True
install_requires =
install_requires =
django-cms>=3.7
django-meta>=2.0.0
django-filer>=1.2
setup_requires =
setup_requires =
setuptools
packages = djangocms_page_meta
python_requires = >=3.7
Expand All @@ -68,7 +68,7 @@ zip_safe = False
djangocms_page_meta = *.html *.png *.gif *js *jpg *jpeg *svg *py *mo *po

[options.extras_require]
docs =
docs =
django<4.0
djangocms-page-tags

Expand Down

0 comments on commit e4fb67c

Please sign in to comment.