From ad5738312fab39c9829d3e4617703b684d8fa4a2 Mon Sep 17 00:00:00 2001 From: Jordan Adler Date: Thu, 31 Oct 2019 00:49:27 +0000 Subject: [PATCH] Prepare for 0.18.2 release --- docs/credits.rst | 4 ++++ docs/whatsnew.rst | 13 +++++++++++++ src/future/__init__.py | 2 +- 3 files changed, 18 insertions(+), 1 deletion(-) diff --git a/docs/credits.rst b/docs/credits.rst index e66136d5..275e148e 100644 --- a/docs/credits.rst +++ b/docs/credits.rst @@ -48,6 +48,7 @@ Authors Python-Future is largely written by Ed Schofield with the help of various contributors: - Jordan Adler +- Jeroen Akkerman - Kyle Altendorf - Grant Bakker - Jacob Beck @@ -70,6 +71,7 @@ Python-Future is largely written by Ed Schofield with th - Michael Joseph - Waldemar Kornewald - Alexey Kotlyarov +- Steve Kowalik - Lion Krischer - Marcin Kuzminski - Joshua Landau @@ -81,6 +83,7 @@ Python-Future is largely written by Ed Schofield with th - Anika Mukherji - Jon Parise - Matthew Parnell +- Tom Picton - Miga Purg - Éloi Rivard - Sesh Sadasivam @@ -91,6 +94,7 @@ Python-Future is largely written by Ed Schofield with th - Sameera Somisetty - Louis Sautier - Gregory P. Smith +- Chase Sterling - Daniel Szoska - Flaviu Tamas - Jeff Tratner diff --git a/docs/whatsnew.rst b/docs/whatsnew.rst index 7d6a1071..e0b4603d 100644 --- a/docs/whatsnew.rst +++ b/docs/whatsnew.rst @@ -3,6 +3,19 @@ What's New ********** +What's new in version 0.18.2 (2019-10-30) +========================================= +This is a minor bug-fix release containing a number of fixes: +- Fix min/max functions with generators, and 'None' default (PR #514) +- Use BaseException in raise_() (PR #515) +- Fix builtins.round() for Decimals (Issue #501) +- Fix raise_from() to prevent failures with immutable classes (PR #518) +- Make FixInput idempotent (Issue #427) +- Fix type in newround (PR #521) +- Support mimetype guessing in urllib2 for Py3.8+ (Issue #508) + +Python 3.8 is not yet officially supported. + What's new in version 0.18.1 (2019-10-09) ========================================= This is a minor bug-fix release containing a fix for raise_() diff --git a/src/future/__init__.py b/src/future/__init__.py index 24f10fa1..ad419d67 100644 --- a/src/future/__init__.py +++ b/src/future/__init__.py @@ -87,7 +87,7 @@ __copyright__ = 'Copyright 2013-2019 Python Charmers Pty Ltd' __ver_major__ = 0 __ver_minor__ = 18 -__ver_patch__ = 1 +__ver_patch__ = 2 __ver_sub__ = '' __version__ = "%d.%d.%d%s" % (__ver_major__, __ver_minor__, __ver_patch__, __ver_sub__)