Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit e427d72

Browse files
committedNov 14, 2020
Release 2.0.0
1 parent 441d742 commit e427d72

File tree

5 files changed

+43
-31
lines changed

5 files changed

+43
-31
lines changed
 

‎HISTORY.rst

Lines changed: 18 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,26 @@ History
66

77
.. towncrier release notes start
88
9-
2.0.0 (unreleased)
9+
2.0.0 (2020-11-14)
1010
==================
1111

12-
* Replace Google+ support with schema.org
12+
Features
13+
--------
14+
15+
- Drop Python 2 (#118)
16+
- Drop Django<2.2 (#118)
17+
- Add Django 3.1 (#118)
18+
- Update tooling (#118)
19+
- Port to github-actions (#118)
20+
- Remove G+ support - Replace with Schema.org (#108)
21+
- Add support for image object (#114)
22+
23+
24+
Bugfixes
25+
--------
26+
27+
- Switch request handling to thread locals (#115)
28+
1329

1430
1.7.0 (2020-07-07)
1531
==================

‎changes/115.bugfix

Lines changed: 0 additions & 1 deletion
This file was deleted.

‎changes/118.feature

Lines changed: 0 additions & 3 deletions
This file was deleted.

‎meta/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "2.0.0a1"
1+
__version__ = "2.0.0"

‎setup.cfg

Lines changed: 24 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
[bumpversion]
2-
current_version = 2.0.0a1
2+
current_version = 2.0.0
33
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\.?)(?P<release>[a-z]*)(?P<relver>\d*)
44
serialize =
5-
{major}.{minor}.{patch}.{release}{relver}
6-
{major}.{minor}.{patch}
5+
{major}.{minor}.{patch}.{release}{relver}
6+
{major}.{minor}.{patch}
77
commit = True
88
tag = True
99
sign_tags = True
@@ -13,11 +13,11 @@ message = Release {new_version}
1313
[bumpversion:part:release]
1414
optional_value = gamma
1515
values =
16-
dev
17-
a
18-
b
19-
rc
20-
gamma
16+
dev
17+
a
18+
b
19+
rc
20+
gamma
2121

2222
[bumpversion:file:meta/__init__.py]
2323

@@ -26,7 +26,7 @@ name = django-meta
2626
version = attr: meta.__version__
2727
url = https://github.com/nephila/django-meta
2828
project_urls =
29-
Documentation = https://django-meta.readthedocs.io/
29+
Documentation = https://django-meta.readthedocs.io/
3030
author = Monwara LLC
3131
author_email = branko@monwara.com
3232
maintainer = Nephila
@@ -37,25 +37,25 @@ long_description_content_type = text/x-rst
3737
license = BSD
3838
license_file = LICENSE
3939
classifiers =
40-
Development Status :: 5 - Production/Stable
41-
Framework :: Django
42-
Framework :: Django :: 2.2
43-
Framework :: Django :: 3.0
44-
Environment :: Web Environment
45-
Intended Audience :: Developers
46-
License :: OSI Approved :: BSD License
47-
Programming Language :: Python :: 3
48-
Programming Language :: Python :: 3.5
49-
Programming Language :: Python :: 3.6
50-
Programming Language :: Python :: 3.7
51-
Programming Language :: Python :: 3.8
40+
Development Status :: 5 - Production/Stable
41+
Framework :: Django
42+
Framework :: Django :: 2.2
43+
Framework :: Django :: 3.0
44+
Environment :: Web Environment
45+
Intended Audience :: Developers
46+
License :: OSI Approved :: BSD License
47+
Programming Language :: Python :: 3
48+
Programming Language :: Python :: 3.5
49+
Programming Language :: Python :: 3.6
50+
Programming Language :: Python :: 3.7
51+
Programming Language :: Python :: 3.8
5252

5353
[options]
5454
include_package_data = True
5555
install_requires =
56-
six
56+
six
5757
setup_requires =
58-
setuptools
58+
setuptools
5959
packages = meta
6060
python_requires = >=3.5
6161
test_suite = cms_helper.run
@@ -67,7 +67,7 @@ meta = *.html *.png *.gif *js *jpg *jpeg *svg *py *mo *po
6767

6868
[options.extras_require]
6969
docs =
70-
django<3.1
70+
django<3.1
7171

7272
[upload]
7373
repository = https://upload.pypi.org/legacy/

0 commit comments

Comments
 (0)
Please sign in to comment.