From e4b1c50e098c33f82c862a34bb2a40f9c4458f46 Mon Sep 17 00:00:00 2001 From: Greg Guthe Date: Tue, 17 Mar 2020 11:16:06 -0400 Subject: [PATCH] Update for v3.1.3 release --- CHANGES | 27 +++++++++++++++++++++++++++ CONTRIBUTORS | 6 +++++- bleach/__init__.py | 4 ++-- 3 files changed, 34 insertions(+), 3 deletions(-) diff --git a/CHANGES b/CHANGES index 2005da7c..f4e09d8f 100644 --- a/CHANGES +++ b/CHANGES @@ -1,6 +1,33 @@ Bleach changes ============== +Version 3.1.3 (March 17th, 2020) +-------------------------------- + +**Security fixes** + +None + +**Backwards incompatible changes** + +None + +**Features** + +* Add relative link to code of conduct. (#442) + +* Drop deprecated 'setup.py test' support. (#507) + +* Fix typo: curren -> current in tests/test_clean.py (#504) + +* Test on PyPy 7 + +* Drop test support for end of life Python 3.4 + +**Bug fixes** + +None + Version 3.1.2 (March 11th, 2020) -------------------------------- diff --git a/CONTRIBUTORS b/CONTRIBUTORS index 2b0137d0..4d8f6b48 100644 --- a/CONTRIBUTORS +++ b/CONTRIBUTORS @@ -1,12 +1,13 @@ Bleach was originally written and maintained by James Socol and various contributors within and without the Mozilla Corporation and Foundation. -It is currently maintained by Will Kahn-Greene an Greg Guthe. +It is currently maintained by Will Kahn-Greene, Greg Guthe, and Jon Dufresne. Maintainers: - Will Kahn-Greene - Greg Guthe +- Jon Dufresne Maintainer emeritus: @@ -32,6 +33,7 @@ Contributors: - Chris Beaven - Dan Gayle - dave-shawley +- dbxnr - Erik Rose - Gaurav Dadhania - Geoffrey Sneddon @@ -44,6 +46,7 @@ Contributors: - Janusz Kamieński - Jeff Balogh - Jonathan Vanasco +- Jon Dufresne - Lee, Cheon-il - Les Orchard - Lorenz Schori @@ -65,6 +68,7 @@ Contributors: - Stu Cox - Tim Dumol - Timothy Fitz +- Tim Gates - Vadim Kotov - Vitaly Volkov - Will Kahn-Greene diff --git a/bleach/__init__.py b/bleach/__init__.py index bb5a5b6d..5d48813b 100644 --- a/bleach/__init__.py +++ b/bleach/__init__.py @@ -18,9 +18,9 @@ # yyyymmdd -__releasedate__ = '20200311' +__releasedate__ = '20200317' # x.y.z or x.y.z.dev0 -- semver -__version__ = '3.1.2' +__version__ = '3.1.3' VERSION = parse_version(__version__)