Skip to content

Commit 834f77b

Browse files
committed
Release 24.11.1.
1 parent 8df5318 commit 834f77b

File tree

3 files changed

+13
-3
lines changed

3 files changed

+13
-3
lines changed

docs/changelog.rst

+12
Original file line numberDiff line numberDiff line change
@@ -56,13 +56,25 @@ The API stability/deprecation policy for this library is as follows:
5656
Releases under CalVer
5757
---------------------
5858

59+
Version 24.11.1
60+
~~~~~~~~~~~~~~~
61+
62+
Released November 2024
63+
64+
* Correct an error with specifying the version in the 24.11.0 package. The
65+
version number of the package was accidentally defined in two places, and
66+
they were out of sync. The extra definition has been removed. The 24.11.0
67+
package has been yanked from PyPI to prevent problems.
68+
69+
5970
Version 24.11.0
6071
~~~~~~~~~~~~~~~
6172

6273
Released November 2024
6374

6475
* Supported Python versions are now 3.9, 3.10, 3.11, 3.12, and 3.13.
6576

77+
6678
Version 24.8.0
6779
~~~~~~~~~~~~~~
6880

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ keywords = ["color", "css", "html", "web"]
2727
license = {text = "BSD-3-Clause"}
2828
readme = "README.rst"
2929
requires-python = ">=3.9"
30-
version = "24.11.0"
30+
version = "24.11.1"
3131

3232
[project.urls]
3333
"Documentation" = "https://webcolors.readthedocs.io"

src/webcolors/__init__.py

-2
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,6 @@
3636
)
3737
from ._types import HTML5SimpleColor, IntegerRGB, IntTuple, PercentRGB, PercentTuple
3838

39-
__version__ = "24.8.0"
40-
4139
__all__ = [
4240
"HTML4",
4341
"CSS2",

0 commit comments

Comments
 (0)