diff --git a/HISTORY.rst b/HISTORY.rst index dce26df..adc309c 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -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) ================== diff --git a/changes/115.bugfix b/changes/115.bugfix deleted file mode 100644 index 85b38a4..0000000 --- a/changes/115.bugfix +++ /dev/null @@ -1 +0,0 @@ -Switch request handling to thread locals diff --git a/changes/118.feature b/changes/118.feature deleted file mode 100644 index 870ee92..0000000 --- a/changes/118.feature +++ /dev/null @@ -1,3 +0,0 @@ -Drop Python 2 -Drop Django<2.2 -Add Django 3.1 diff --git a/meta/__init__.py b/meta/__init__.py index 4b3c3ea..8c0d5d5 100644 --- a/meta/__init__.py +++ b/meta/__init__.py @@ -1 +1 @@ -__version__ = "2.0.0a1" +__version__ = "2.0.0" diff --git a/setup.cfg b/setup.cfg index 1f7c6a5..3453564 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,9 +1,9 @@ [bumpversion] -current_version = 2.0.0a1 +current_version = 2.0.0 parse = (?P\d+)\.(?P\d+)\.(?P\d+)(\.?)(?P[a-z]*)(?P\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 @@ -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] @@ -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 = branko@monwara.com maintainer = Nephila @@ -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 @@ -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/