Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
4 changes: 2 additions & 2 deletions bleach/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
Expand Down
Loading