diff --git a/AUTHORS.rst b/AUTHORS.rst index aa5aacf..cd235c8 100644 --- a/AUTHORS.rst +++ b/AUTHORS.rst @@ -5,7 +5,7 @@ Credits Development Lead ---------------- -* Iacopo Spalletti +* Iacopo Spalletti Past core developers -------------------- @@ -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 @@ -33,5 +37,8 @@ Contributors * Miroslav Bendík * Murat Aydos * mvergerdelbove +* Peter Morrow * Sergei Maertens +* Thijs Triemstra +* Tim Gates * Zan Anderle diff --git a/HISTORY.rst b/HISTORY.rst index adc309c..60969e1 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -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) ================== diff --git a/README.rst b/README.rst index 68117c0..ab0213b 100644 --- a/README.rst +++ b/README.rst @@ -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 diff --git a/changes/130.bugfix b/changes/130.bugfix deleted file mode 100644 index dc92755..0000000 --- a/changes/130.bugfix +++ /dev/null @@ -1 +0,0 @@ -Changes imports from ugettext_lazy to gettext_lazy to fix deprecation warning diff --git a/changes/133.bugfix b/changes/133.bugfix deleted file mode 100644 index 6f1f6da..0000000 --- a/changes/133.bugfix +++ /dev/null @@ -1 +0,0 @@ -Get correct setting META_USE_SITES in build_absolute_uri model method diff --git a/changes/135.bugfix b/changes/135.bugfix deleted file mode 100644 index ce652f1..0000000 --- a/changes/135.bugfix +++ /dev/null @@ -1 +0,0 @@ -Update tox environments and github actions diff --git a/docs/development.rst b/docs/development.rst index a84fdd4..b5de793 100644 --- a/docs/development.rst +++ b/docs/development.rst @@ -11,7 +11,7 @@ knowledge, and a willingness to follow the contribution guidelines. Nephila ******* -django meta is maintained by Iacopo Spalletti at `Nephila `_ +django meta is maintained by Iacopo Spalletti at `Nephila `_ and is released under a BSD License. Nephila is an active supporter of Django, django CMS and its community. diff --git a/meta/__init__.py b/meta/__init__.py index 2c35198..9aa3f90 100644 --- a/meta/__init__.py +++ b/meta/__init__.py @@ -1 +1 @@ -__version__ = "2.0.1.dev0" +__version__ = "2.1.0" diff --git a/setup.cfg b/setup.cfg index a3ad4a3..5b6ecde 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,7 +1,7 @@ [bumpversion] -current_version = 2.0.1.dev0 +current_version = 2.1.0 parse = (?P\d+)\.(?P\d+)\.(?P\d+)(\.?)(?P[a-z]*)(?P\d*) -serialize = +serialize = {major}.{minor}.{patch}.{release}{relver} {major}.{minor}.{patch} commit = True @@ -12,7 +12,7 @@ message = Release {new_version} [bumpversion:part:release] optional_value = gamma -values = +values = dev a b @@ -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 @@ -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 @@ -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]