diff --git a/CHANGES b/CHANGES index 74a5d2d4..a06a1641 100644 --- a/CHANGES +++ b/CHANGES @@ -1,8 +1,8 @@ Bleach changes ============== -Version 6.2.0 (in development) ------------------------------- +Version 6.2.0 (October 29th, 2024) +---------------------------------- **Backwards incompatible changes** * Dropped support for Python 3.8. (#737) @@ -14,6 +14,9 @@ None **Bug fixes** * Add support for Python 3.13. (#736) +* Remove six depdenncy. (#618) +* Update known-good versions for tinycss2. (#732) +* Fix additional < followed by characters and EOF issues. (#728) Version 6.1.0 (October 6th, 2023) diff --git a/bleach/__init__.py b/bleach/__init__.py index 12e93b4d..942987d9 100644 --- a/bleach/__init__.py +++ b/bleach/__init__.py @@ -11,9 +11,9 @@ # yyyymmdd -__releasedate__ = "20231006" +__releasedate__ = "20241029" # x.y.z or x.y.z.dev0 -- semver -__version__ = "6.1.0" +__version__ = "6.2.0" __all__ = ["clean", "linkify"]