Skip to content

Commit

Permalink
Release 2.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
yakky committed Jul 28, 2022
1 parent c724237 commit 9d6bef9
Show file tree
Hide file tree
Showing 9 changed files with 32 additions and 17 deletions.
9 changes: 8 additions & 1 deletion AUTHORS.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Credits
Development Lead
----------------

* Iacopo Spalletti <i.spalletti@nephila.it>
* Iacopo Spalletti <i.spalletti@nephila.digital>

Past core developers
--------------------
Expand All @@ -17,13 +17,17 @@ Contributors
------------

* Adam Chainz
* Alexander Pitkin
* asmyshlyaev177
* Basil Shubin
* Branko Vukelic
* Cansin Yildiz
* Dmitry Fillo
* ellmetha
* EmiM
* hink
* John Carter
* Joseph Solomon
* Ken Cochrane
* Leif Denby
* Leonardo Cavallucci
Expand All @@ -33,5 +37,8 @@ Contributors
* Miroslav Bendík
* Murat Aydos
* mvergerdelbove
* Peter Morrow
* Sergei Maertens
* Thijs Triemstra
* Tim Gates
* Zan Anderle
11 changes: 11 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,17 @@ History

.. towncrier release notes start
2.1.0 (2022-07-28)
==================

Bugfixes
--------

- Changes imports from ugettext_lazy to gettext_lazy to fix deprecation warning (#130)
- Get correct setting META_USE_SITES in build_absolute_uri model method (#133)
- Update tox environments and github actions (#135)


2.0.0 (2020-11-14)
==================

Expand Down
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -26,14 +26,14 @@ Supported versions
Django
******

2.2 to 3.1 (newer versions might work but are not tested yet)
2.2 to 4.0 (newer versions might work but are not tested yet)


******
Python
******

Python 3.5 to 3.8
Python 3.7 to 3.10

*************
Basic concept
Expand Down
1 change: 0 additions & 1 deletion changes/130.bugfix

This file was deleted.

1 change: 0 additions & 1 deletion changes/133.bugfix

This file was deleted.

1 change: 0 additions & 1 deletion changes/135.bugfix

This file was deleted.

2 changes: 1 addition & 1 deletion docs/development.rst
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ knowledge, and a willingness to follow the contribution guidelines.
Nephila
*******

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

Nephila is an active supporter of Django, django CMS and its community.
Expand Down
2 changes: 1 addition & 1 deletion meta/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "2.0.1.dev0"
__version__ = "2.1.0"
18 changes: 9 additions & 9 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[bumpversion]
current_version = 2.0.1.dev0
current_version = 2.1.0
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\.?)(?P<release>[a-z]*)(?P<relver>\d*)
serialize =
serialize =
{major}.{minor}.{patch}.{release}{relver}
{major}.{minor}.{patch}
commit = True
Expand All @@ -12,7 +12,7 @@ message = Release {new_version}

[bumpversion:part:release]
optional_value = gamma
values =
values =
dev
a
b
Expand All @@ -25,18 +25,18 @@ values =
name = django-meta
version = attr: meta.__version__
url = https://github.com/nephila/django-meta
project_urls =
project_urls =
Documentation = https://django-meta.readthedocs.io/
author = Monwara LLC
author_email = branko@monwara.com
maintainer = Nephila
maintainer_email = info@nephila.it
maintainer_email = info@nephila.digital
description = Pluggable app for handling webpage meta tags and OpenGraph properties
long_description = file: README.rst, HISTORY.rst
long_description_content_type = text/x-rst
license = BSD
license_file = LICENSE
classifiers =
classifiers =
Development Status :: 5 - Production/Stable
Framework :: Django
Framework :: Django :: 2.2
Expand All @@ -54,9 +54,9 @@ classifiers =

[options]
include_package_data = True
install_requires =
install_requires =
six
setup_requires =
setup_requires =
setuptools
packages = meta
python_requires = >=3.7
Expand All @@ -68,7 +68,7 @@ zip_safe = False
meta = *.html *.png *.gif *js *jpg *jpeg *svg *py *mo *po

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

[upload]
Expand Down

0 comments on commit 9d6bef9

Please sign in to comment.