From 9b4c26e6c46d97086942e39f4284c183560fc323 Mon Sep 17 00:00:00 2001 From: Will Kahn-Greene Date: Tue, 29 Oct 2024 14:24:12 -0400 Subject: [PATCH] Prep for a 6.2.0 release --- CHANGES | 7 +++++-- bleach/__init__.py | 4 ++-- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/CHANGES b/CHANGES index 74a5d2d..a06a164 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 12e93b4..942987d 100644 --- a/bleach/__init__.py +++ b/bleach/__init__.py @@ -11,9 +11,9 @@ from bleach.sanitizer import ( # 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"]