diff --git a/CHANGELOG.md b/CHANGELOG.md index f7d216f..17112db 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,12 @@ +## Version 6.2.2 (August 5, 2024) + +- Updated Read the Docs config so that docs might build again. + ## Version 6.2.1 (August 5, 2024) - Updated setup.py and tox.ini to indicate support for Python 3.8 through 3.13. - Replaced the text file used in CLI tests with a better one that tests the same issue. +- Lints and auto-formatting using ruff. - Packaging and test fixes by Michał Górny. ## Version 6.2.0 (March 15, 2024) diff --git a/docs/conf.py b/docs/conf.py index 9558a2b..9230f75 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.1" +release = "6.2.2" # 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 49c6e81..d8fdc8d 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.0" +__version__ = "6.2.2" # Though this function does nothing, it lets linters know that we're using diff --git a/pyproject.toml b/pyproject.toml index abcbd31..d7e86ce 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "ftfy" -version = "6.2.1" +version = "6.2.2" description = "Fixes mojibake and other problems with Unicode, after the fact" authors = ["Robyn Speer "] license = "Apache-2.0" diff --git a/setup.py b/setup.py index a63f8f4..31f436d 100644 --- a/setup.py +++ b/setup.py @@ -21,7 +21,7 @@ setup( name="ftfy", - version="6.2.1", + version="6.2.2", maintainer="Robyn Speer", maintainer_email="rspeer@arborelia.net", license="Apache 2.0",