Skip to content

Commit

Permalink
Update for v3.3.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
Greg Guthe committed Feb 1, 2021
1 parent 1334134 commit 842fcb4
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 6 deletions.
19 changes: 19 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
@@ -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)
----------------------------------

Expand Down
4 changes: 2 additions & 2 deletions SECURITY.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
4 changes: 2 additions & 2 deletions bleach/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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__)


Expand Down
4 changes: 2 additions & 2 deletions tests_website/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<html>
<head>
<meta charset="UTF-8">
<title>Python Bleach 3.2.3</title>
<title>Python Bleach 3.3.0</title>
<style>
textarea, iframe {
width: 95%;
Expand All @@ -20,7 +20,7 @@
</style>
</head>
<body>
<h2>Python Bleach 3.2.3</h2>
<h2>Python Bleach 3.3.0</h2>
<p>
<a href="http://badge.fury.io/py/bleach"><img style="max-width:100%;" alt="pypi version" src="https://badge.fury.io/py/bleach.svg"></a>
<a href="https://github.com/mozilla/bleach/actions?query=workflow%3ATest"><img style="max-width:100%;" alt="Build Status" src="https://github.com/mozilla/bleach/workflows/Test/badge.svg"></a>
Expand Down

0 comments on commit 842fcb4

Please sign in to comment.