Skip to content

Commit 9d6bef9

Browse files
committed
Release 2.1.0
1 parent c724237 commit 9d6bef9

File tree

9 files changed

+32
-17
lines changed

9 files changed

+32
-17
lines changed

AUTHORS.rst

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Credits
55
Development Lead
66
----------------
77

8-
* Iacopo Spalletti <i.spalletti@nephila.it>
8+
* Iacopo Spalletti <i.spalletti@nephila.digital>
99

1010
Past core developers
1111
--------------------
@@ -17,13 +17,17 @@ Contributors
1717
------------
1818

1919
* Adam Chainz
20+
* Alexander Pitkin
21+
* asmyshlyaev177
2022
* Basil Shubin
2123
* Branko Vukelic
2224
* Cansin Yildiz
2325
* Dmitry Fillo
2426
* ellmetha
2527
* EmiM
28+
* hink
2629
* John Carter
30+
* Joseph Solomon
2731
* Ken Cochrane
2832
* Leif Denby
2933
* Leonardo Cavallucci
@@ -33,5 +37,8 @@ Contributors
3337
* Miroslav Bendík
3438
* Murat Aydos
3539
* mvergerdelbove
40+
* Peter Morrow
3641
* Sergei Maertens
42+
* Thijs Triemstra
43+
* Tim Gates
3744
* Zan Anderle

HISTORY.rst

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,17 @@ History
66

77
.. towncrier release notes start
88
9+
2.1.0 (2022-07-28)
10+
==================
11+
12+
Bugfixes
13+
--------
14+
15+
- Changes imports from ugettext_lazy to gettext_lazy to fix deprecation warning (#130)
16+
- Get correct setting META_USE_SITES in build_absolute_uri model method (#133)
17+
- Update tox environments and github actions (#135)
18+
19+
920
2.0.0 (2020-11-14)
1021
==================
1122

README.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,14 +26,14 @@ Supported versions
2626
Django
2727
******
2828

29-
2.2 to 3.1 (newer versions might work but are not tested yet)
29+
2.2 to 4.0 (newer versions might work but are not tested yet)
3030

3131

3232
******
3333
Python
3434
******
3535

36-
Python 3.5 to 3.8
36+
Python 3.7 to 3.10
3737

3838
*************
3939
Basic concept

changes/130.bugfix

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

changes/133.bugfix

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

changes/135.bugfix

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

docs/development.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ knowledge, and a willingness to follow the contribution guidelines.
1111
Nephila
1212
*******
1313

14-
django meta is maintained by Iacopo Spalletti at `Nephila <https://www.nephila.it/>`_
14+
django meta is maintained by Iacopo Spalletti at `Nephila <https://www.nephila.digital/>`_
1515
and is released under a BSD License.
1616

1717
Nephila is an active supporter of Django, django CMS and its community.

meta/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "2.0.1.dev0"
1+
__version__ = "2.1.0"

setup.cfg

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[bumpversion]
2-
current_version = 2.0.1.dev0
2+
current_version = 2.1.0
33
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\.?)(?P<release>[a-z]*)(?P<relver>\d*)
4-
serialize =
4+
serialize =
55
{major}.{minor}.{patch}.{release}{relver}
66
{major}.{minor}.{patch}
77
commit = True
@@ -12,7 +12,7 @@ message = Release {new_version}
1212

1313
[bumpversion:part:release]
1414
optional_value = gamma
15-
values =
15+
values =
1616
dev
1717
a
1818
b
@@ -25,18 +25,18 @@ values =
2525
name = django-meta
2626
version = attr: meta.__version__
2727
url = https://github.com/nephila/django-meta
28-
project_urls =
28+
project_urls =
2929
Documentation = https://django-meta.readthedocs.io/
3030
author = Monwara LLC
3131
author_email = [email protected]
3232
maintainer = Nephila
33-
maintainer_email = info@nephila.it
33+
maintainer_email = info@nephila.digital
3434
description = Pluggable app for handling webpage meta tags and OpenGraph properties
3535
long_description = file: README.rst, HISTORY.rst
3636
long_description_content_type = text/x-rst
3737
license = BSD
3838
license_file = LICENSE
39-
classifiers =
39+
classifiers =
4040
Development Status :: 5 - Production/Stable
4141
Framework :: Django
4242
Framework :: Django :: 2.2
@@ -54,9 +54,9 @@ classifiers =
5454

5555
[options]
5656
include_package_data = True
57-
install_requires =
57+
install_requires =
5858
six
59-
setup_requires =
59+
setup_requires =
6060
setuptools
6161
packages = meta
6262
python_requires = >=3.7
@@ -68,7 +68,7 @@ zip_safe = False
6868
meta = *.html *.png *.gif *js *jpg *jpeg *svg *py *mo *po
6969

7070
[options.extras_require]
71-
docs =
71+
docs =
7272
django<4.0
7373

7474
[upload]

0 commit comments

Comments
 (0)