Skip to content

Commit

Permalink
Release 2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
yakky committed Nov 14, 2020
1 parent 441d742 commit e427d72
Show file tree
Hide file tree
Showing 5 changed files with 43 additions and 31 deletions.
20 changes: 18 additions & 2 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,26 @@ History

.. towncrier release notes start
2.0.0 (unreleased)
2.0.0 (2020-11-14)
==================

* Replace Google+ support with schema.org
Features
--------

- Drop Python 2 (#118)
- Drop Django<2.2 (#118)
- Add Django 3.1 (#118)
- Update tooling (#118)
- Port to github-actions (#118)
- Remove G+ support - Replace with Schema.org (#108)
- Add support for image object (#114)


Bugfixes
--------

- Switch request handling to thread locals (#115)


1.7.0 (2020-07-07)
==================
Expand Down
1 change: 0 additions & 1 deletion changes/115.bugfix

This file was deleted.

3 changes: 0 additions & 3 deletions changes/118.feature

This file was deleted.

2 changes: 1 addition & 1 deletion meta/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "2.0.0a1"
__version__ = "2.0.0"
48 changes: 24 additions & 24 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
[bumpversion]
current_version = 2.0.0a1
current_version = 2.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:meta/__init__.py]

Expand All @@ -26,7 +26,7 @@ name = django-meta
version = attr: meta.__version__
url = https://github.com/nephila/django-meta
project_urls =
Documentation = https://django-meta.readthedocs.io/
Documentation = https://django-meta.readthedocs.io/
author = Monwara LLC
author_email = [email protected]
maintainer = Nephila
Expand All @@ -37,25 +37,25 @@ long_description_content_type = text/x-rst
license = BSD
license_file = LICENSE
classifiers =
Development Status :: 5 - Production/Stable
Framework :: Django
Framework :: Django :: 2.2
Framework :: Django :: 3.0
Environment :: Web Environment
Intended Audience :: Developers
License :: OSI Approved :: BSD License
Programming Language :: Python :: 3
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Development Status :: 5 - Production/Stable
Framework :: Django
Framework :: Django :: 2.2
Framework :: Django :: 3.0
Environment :: Web Environment
Intended Audience :: Developers
License :: OSI Approved :: BSD License
Programming Language :: Python :: 3
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8

[options]
include_package_data = True
install_requires =
six
six
setup_requires =
setuptools
setuptools
packages = meta
python_requires = >=3.5
test_suite = cms_helper.run
Expand All @@ -67,7 +67,7 @@ meta = *.html *.png *.gif *js *jpg *jpeg *svg *py *mo *po

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

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

0 comments on commit e427d72

Please sign in to comment.