From 6d2aae0bfb97cab322ac617daceb2482f571aa44 Mon Sep 17 00:00:00 2001 From: Elia Robyn Lake Date: Mon, 5 Aug 2024 21:28:54 -0400 Subject: [PATCH] v6.2.3: add metadata that PyPI needs --- CHANGELOG.md | 4 ++++ docs/conf.py | 2 +- ftfy/__init__.py | 2 +- pyproject.toml | 11 ++++++----- setup.py | 2 +- 5 files changed, 13 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 17112db..96d4ea8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## Version 6.2.3 (August 5, 2024) + +- Updated PyPI metadata. + ## Version 6.2.2 (August 5, 2024) - Updated Read the Docs config so that docs might build again. diff --git a/docs/conf.py b/docs/conf.py index 9230f75..bca9489 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -49,7 +49,7 @@ # The short X.Y version. version = "6.2" # The full version, including alpha/beta/rc tags. -release = "6.2.2" +release = "6.2.3" # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/ftfy/__init__.py b/ftfy/__init__.py index d8fdc8d..6b97b58 100644 --- a/ftfy/__init__.py +++ b/ftfy/__init__.py @@ -29,7 +29,7 @@ from ftfy.badness import is_bad from ftfy.formatting import display_ljust -__version__ = "6.2.2" +__version__ = "6.2.3" # Though this function does nothing, it lets linters know that we're using diff --git a/pyproject.toml b/pyproject.toml index d7e86ce..1149606 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,10 @@ [tool.poetry] name = "ftfy" -version = "6.2.2" +version = "6.2.3" description = "Fixes mojibake and other problems with Unicode, after the fact" +homepage = "https://ftfy.readthedocs.io/en/latest/" +documentation = "https://ftfy.readthedocs.io/en/latest/" +repository = "https://github.com/rspeer/python-ftfy" authors = ["Robyn Speer "] license = "Apache-2.0" include = [ @@ -25,12 +28,10 @@ ruff = "^0.5.6" [tool.poetry.scripts] ftfy = "ftfy.cli:main" -[project.urls] -Homepage = "https://ftfy.readthedocs.io/en/latest/" -Documentation = "https://ftfy.readthedocs.io/en/latest/" -Repository = "https://github.com/rspeer/python-ftfy" +[tool.poetry.urls] Issues = "https://github.com/rspeer/python-ftfy/issues/" Changelog = "https://github.com/rspeer/python-ftfy/blob/main/CHANGELOG.md" +Cohost = "https://cohost.org/arborelia" [build-system] requires = ["poetry-core>=1.0.0"] diff --git a/setup.py b/setup.py index 31f436d..10789bf 100644 --- a/setup.py +++ b/setup.py @@ -21,7 +21,7 @@ setup( name="ftfy", - version="6.2.2", + version="6.2.3", maintainer="Robyn Speer", maintainer_email="rspeer@arborelia.net", license="Apache 2.0",