diff --git a/CHANGES b/CHANGES index a06a1641..8c7ea88d 100644 --- a/CHANGES +++ b/CHANGES @@ -1,8 +1,26 @@ Bleach changes ============== +Version 6.3.0 (October 27th, 2025) +---------------------------------- + +**Backwards incompatible changes** + +* Dropped support for Python 3.9. (#756) + +**Security fixes** + +None + +**Bug fixes** + +* Add support for Python 3.14. (#758) +* Fix wbr handling. (#488) + + Version 6.2.0 (October 29th, 2024) ---------------------------------- + **Backwards incompatible changes** * Dropped support for Python 3.8. (#737) diff --git a/bleach/__init__.py b/bleach/__init__.py index ff610912..b056e84d 100644 --- a/bleach/__init__.py +++ b/bleach/__init__.py @@ -11,9 +11,9 @@ # yyyymmdd -__releasedate__ = "20241029" +__releasedate__ = "20251027" # x.y.z or x.y.z.dev0 -- semver -__version__ = "6.2.0" +__version__ = "6.3.0" __all__ = ["clean", "linkify"]