From ad910ce30926f8698cf7c8f4ec8b32d00d0897b2 Mon Sep 17 00:00:00 2001 From: Will Kahn-Greene Date: Tue, 8 Jan 2019 12:05:35 -0500 Subject: [PATCH] Update for 3.1.0 release --- CHANGES | 6 ++++-- CONTRIBUTORS | 12 ++++++++++-- bleach/__init__.py | 4 ++-- 3 files changed, 16 insertions(+), 6 deletions(-) diff --git a/CHANGES b/CHANGES index 4fe065e8..838393b3 100644 --- a/CHANGES +++ b/CHANGES @@ -1,8 +1,8 @@ Bleach changes ============== -Version 3.1.0 (In development) ------------------------------- +Version 3.1.0 (January 9th, 2019) +--------------------------------- **Security fixes** @@ -31,6 +31,8 @@ None * Fix ``InputStreamWithMemory`` when the ``BleachHTMLParser`` is parsing ``meta`` tags. (#431) +* Fix doctests. (#357) + Version 3.0.2 (October 11th, 2018) ---------------------------------- diff --git a/CONTRIBUTORS b/CONTRIBUTORS index 5783ab17..2b0137d0 100644 --- a/CONTRIBUTORS +++ b/CONTRIBUTORS @@ -18,21 +18,25 @@ Contributors: - Adam Lofts - Adrian "ThiefMaster" - Alek -- Alexandre Macabies -- Alexandr N. Zamaraev - Alex Defsen - Alex Ehlke +- Alexandre Macabies +- Alexandr N. Zamaraev - Alireza Savand - Andreas Malecki - Andy Freeland - Antoine Leclair +- Anton Backer - Anton Kovalyov +- Chad Birch - Chris Beaven - Dan Gayle +- dave-shawley - Erik Rose - Gaurav Dadhania - Geoffrey Sneddon - Greg Guthe +- hugovk - Istvan Albert - Jaime Irurzun - James Socol @@ -49,6 +53,7 @@ Contributors: - Mark Lee - Mark Paschal - mdxs +- Nikita Sobolev - nikolas - Oh Jinkyun - Paul Craciunoiu @@ -56,8 +61,11 @@ Contributors: - Ryan Niemeyer - Sébastien Fievet - sedrubal +- Stephane Blondon +- Stu Cox - Tim Dumol - Timothy Fitz +- Vadim Kotov - Vitaly Volkov - Will Kahn-Greene - Zoltán diff --git a/bleach/__init__.py b/bleach/__init__.py index 6249bf81..9816549b 100644 --- a/bleach/__init__.py +++ b/bleach/__init__.py @@ -18,9 +18,9 @@ # yyyymmdd -__releasedate__ = '' +__releasedate__ = '20190109' # x.y.z or x.y.z.dev0 -- semver -__version__ = '3.1.0.dev0' +__version__ = '3.1.0' VERSION = parse_version(__version__)