diff --git a/docs/changelog.rst b/docs/changelog.rst index d527381..da3f4f8 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -56,6 +56,17 @@ The API stability/deprecation policy for this library is as follows: Releases under CalVer --------------------- +Version 24.11.1 +~~~~~~~~~~~~~~~ + +Released November 2024 + +* Correct an error with specifying the version in the 24.11.0 package. The + version number of the package was accidentally defined in two places, and + they were out of sync. The extra definition has been removed. The 24.11.0 + package has been yanked from PyPI to prevent problems. + + Version 24.11.0 ~~~~~~~~~~~~~~~ @@ -63,6 +74,7 @@ Released November 2024 * Supported Python versions are now 3.9, 3.10, 3.11, 3.12, and 3.13. + Version 24.8.0 ~~~~~~~~~~~~~~ diff --git a/pyproject.toml b/pyproject.toml index 0ea9b8c..355eaef 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -27,7 +27,7 @@ keywords = ["color", "css", "html", "web"] license = {text = "BSD-3-Clause"} readme = "README.rst" requires-python = ">=3.9" -version = "24.11.0" +version = "24.11.1" [project.urls] "Documentation" = "https://webcolors.readthedocs.io" diff --git a/src/webcolors/__init__.py b/src/webcolors/__init__.py index e1fc1c6..f1482af 100644 --- a/src/webcolors/__init__.py +++ b/src/webcolors/__init__.py @@ -36,8 +36,6 @@ ) from ._types import HTML5SimpleColor, IntegerRGB, IntTuple, PercentRGB, PercentTuple -__version__ = "24.8.0" - __all__ = [ "HTML4", "CSS2",