Skip to content

Commit

Permalink
Release 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
yakky committed Nov 18, 2020
1 parent f3f751a commit c686377
Show file tree
Hide file tree
Showing 6 changed files with 45 additions and 34 deletions.
19 changes: 16 additions & 3 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,23 @@
History
*******

Unreleased
===================
.. towncrier release notes start
1.0.0 (2020-11-18)
==================

Features
--------

- Update tooling and drop Python 2 / Django < 2.2 compatibility (#135)
- Add support for django CMS 3.8 / Django 3.1
- Add support for django-meta 2.0


Bugfixes
--------

* Nothing yet
- Fix setup.cfg and pyproject.toml package name (#138)

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

This file was deleted.

1 change: 0 additions & 1 deletion changes/138.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__ = "0.10.1.dev1"
__version__ = "1.0.0"
__author__ = "Iacopo Spalletti <i.spalletti@nephila.it>"

default_app_config = "djangocms_page_meta.apps.PageMetaConfig"
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_meta/*py'

[tool.towncrier]
package = "djangocms-page-meta"
package = "djangocms_page_meta"
directory = "changes"
filename = "HISTORY.rst"
title_format = "{version} ({project_date})"
Expand Down
54 changes: 27 additions & 27 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
[bumpversion]
current_version = 0.10.1.dev1
current_version = 1.0.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}
{major}.{minor}.{patch}.{release}{relver}
{major}.{minor}.{patch}
commit = True
tag = True
sign_tags = True
Expand All @@ -13,11 +13,11 @@ message = Release {new_version}
[bumpversion:part:release]
optional_value = gamma
values =
dev
a
b
rc
gamma
dev
a
b
rc
gamma

[bumpversion:file:djangocms_page_meta/__init__.py]

Expand All @@ -26,7 +26,7 @@ name = djangocms-page-meta
version = attr: djangocms_page_meta.__version__
url = https://github.com/nephila/djangocms-page-meta
project_urls =
Documentation = https://djangocms-page-meta.readthedocs.io/
Documentation = https://djangocms-page-meta.readthedocs.io/
author = Iacopo Spalletti
author_email = i.spalletti@nephila.it
description = OpenGraph, Twitter Card and Schema.org snippet tags for django CMS 3 pages
Expand All @@ -36,27 +36,27 @@ license = BSD
license_file = LICENSE
keywords = django cms, meta tags, OpenGraph, Twitter Cards, Schema.org
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
Programming Language :: Python :: 3
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
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
Programming Language :: Python :: 3
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-meta>=2.0.0a1
django-filer>=1.2
django-cms>=3.7
django-meta>=2.0.0
django-filer>=1.2
setup_requires =
setuptools
setuptools
packages = djangocms_page_meta
python_requires = >=3.6
test_suite = cms_helper.run
Expand All @@ -68,8 +68,8 @@ djangocms_page_meta = *.html *.png *.gif *js *jpg *jpeg *svg *py *mo *po

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

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

0 comments on commit c686377

Please sign in to comment.