diff --git a/CHANGES b/CHANGES index b93ae510..d4a0e500 100644 --- a/CHANGES +++ b/CHANGES @@ -1,6 +1,25 @@ Bleach changes ============== +Version 3.3.0 (February 1st, 2021) +---------------------------------- + +**Backwards incompatible changes** + +* clean escapes HTML comments even when strip_comments=False + +**Security fixes** + +* Fix bug 1621692 / GHSA-m6xf-fq7q-8743. See the advisory for details. + +**Features** + +None + +**Bug fixes** + +None + Version 3.2.3 (January 26th, 2021) ---------------------------------- diff --git a/SECURITY.md b/SECURITY.md index 47b7d7a8..751dfdbb 100644 --- a/SECURITY.md +++ b/SECURITY.md @@ -7,8 +7,8 @@ currently being supported with security updates. | Version | Supported | | ------- | ------------------ | -| 3.2.x | :white_check_mark: | -| < 3.1 | :x: | +| 3.3.x | :white_check_mark: | +| < 3.2 | :x: | ## Reporting a Vulnerability diff --git a/bleach/__init__.py b/bleach/__init__.py index 02301f7e..6cc994c2 100644 --- a/bleach/__init__.py +++ b/bleach/__init__.py @@ -18,9 +18,9 @@ # yyyymmdd -__releasedate__ = "20210126" +__releasedate__ = "20210201" # x.y.z or x.y.z.dev0 -- semver -__version__ = "3.2.3" +__version__ = "3.3.0" VERSION = packaging.version.Version(__version__) diff --git a/tests_website/index.html b/tests_website/index.html index 5df8ed99..b4a92f9d 100644 --- a/tests_website/index.html +++ b/tests_website/index.html @@ -2,7 +2,7 @@ - Python Bleach 3.2.3 + Python Bleach 3.3.0 -

Python Bleach 3.2.3

+

Python Bleach 3.3.0

pypi version Build Status