Skip to content

Commit 6d2aae0

Browse files
committed
v6.2.3: add metadata that PyPI needs
1 parent 2a4f6b4 commit 6d2aae0

File tree

5 files changed

+13
-8
lines changed

5 files changed

+13
-8
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## Version 6.2.3 (August 5, 2024)
2+
3+
- Updated PyPI metadata.
4+
15
## Version 6.2.2 (August 5, 2024)
26

37
- Updated Read the Docs config so that docs might build again.

docs/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
# The short X.Y version.
5050
version = "6.2"
5151
# The full version, including alpha/beta/rc tags.
52-
release = "6.2.2"
52+
release = "6.2.3"
5353

5454
# The language for content autogenerated by Sphinx. Refer to documentation
5555
# for a list of supported languages.

ftfy/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
from ftfy.badness import is_bad
3030
from ftfy.formatting import display_ljust
3131

32-
__version__ = "6.2.2"
32+
__version__ = "6.2.3"
3333

3434

3535
# Though this function does nothing, it lets linters know that we're using

pyproject.toml

+6-5
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
[tool.poetry]
22
name = "ftfy"
3-
version = "6.2.2"
3+
version = "6.2.3"
44
description = "Fixes mojibake and other problems with Unicode, after the fact"
5+
homepage = "https://ftfy.readthedocs.io/en/latest/"
6+
documentation = "https://ftfy.readthedocs.io/en/latest/"
7+
repository = "https://github.com/rspeer/python-ftfy"
58
authors = ["Robyn Speer <[email protected]>"]
69
license = "Apache-2.0"
710
include = [
@@ -25,12 +28,10 @@ ruff = "^0.5.6"
2528
[tool.poetry.scripts]
2629
ftfy = "ftfy.cli:main"
2730

28-
[project.urls]
29-
Homepage = "https://ftfy.readthedocs.io/en/latest/"
30-
Documentation = "https://ftfy.readthedocs.io/en/latest/"
31-
Repository = "https://github.com/rspeer/python-ftfy"
31+
[tool.poetry.urls]
3232
Issues = "https://github.com/rspeer/python-ftfy/issues/"
3333
Changelog = "https://github.com/rspeer/python-ftfy/blob/main/CHANGELOG.md"
34+
Cohost = "https://cohost.org/arborelia"
3435

3536
[build-system]
3637
requires = ["poetry-core>=1.0.0"]

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121

2222
setup(
2323
name="ftfy",
24-
version="6.2.2",
24+
version="6.2.3",
2525
maintainer="Robyn Speer",
2626
maintainer_email="[email protected]",
2727
license="Apache 2.0",

0 commit comments

Comments
 (0)