File tree Expand file tree Collapse file tree 3 files changed +18
-1
lines changed Top Open diff view settings Expand file tree Collapse file tree 3 files changed +18
-1
lines changed Top Open diff view settings Original file line number Diff line number Diff line change @@ -48,6 +48,7 @@ Authors
4848Python-Future is largely written by Ed Schofield <ed@pythoncharmers.com> with the help of various contributors:
4949
5050- Jordan Adler
51+ - Jeroen Akkerman
5152- Kyle Altendorf
5253- Grant Bakker
5354- Jacob Beck
@@ -70,6 +71,7 @@ Python-Future is largely written by Ed Schofield <ed@pythoncharmers.com> with th
7071- Michael Joseph
7172- Waldemar Kornewald
7273- Alexey Kotlyarov
74+ - Steve Kowalik
7375- Lion Krischer
7476- Marcin Kuzminski
7577- Joshua Landau
@@ -81,6 +83,7 @@ Python-Future is largely written by Ed Schofield <ed@pythoncharmers.com> with th
8183- Anika Mukherji
8284- Jon Parise
8385- Matthew Parnell
86+ - Tom Picton
8487- Miga Purg
8588- Éloi Rivard
8689- Sesh Sadasivam
@@ -91,6 +94,7 @@ Python-Future is largely written by Ed Schofield <ed@pythoncharmers.com> with th
9194- Sameera Somisetty
9295- Louis Sautier
9396- Gregory P. Smith
97+ - Chase Sterling
9498- Daniel Szoska
9599- Flaviu Tamas
96100- Jeff Tratner
Original file line number Diff line number Diff line change 33What's New
44**********
55
6+ What's new in version 0.18.2 (2019-10-30)
7+ =========================================
8+ This is a minor bug-fix release containing a number of fixes:
9+ - Fix min/max functions with generators, and 'None' default (PR #514)
10+ - Use BaseException in raise_() (PR #515)
11+ - Fix builtins.round() for Decimals (Issue #501)
12+ - Fix raise_from() to prevent failures with immutable classes (PR #518)
13+ - Make FixInput idempotent (Issue #427)
14+ - Fix type in newround (PR #521)
15+ - Support mimetype guessing in urllib2 for Py3.8+ (Issue #508)
16+
17+ Python 3.8 is not yet officially supported.
18+
619What's new in version 0.18.1 (2019-10-09)
720=========================================
821This is a minor bug-fix release containing a fix for raise_()
Original file line number Diff line number Diff line change 8787__copyright__ = 'Copyright 2013-2019 Python Charmers Pty Ltd'
8888__ver_major__ = 0
8989__ver_minor__ = 18
90- __ver_patch__ = 1
90+ __ver_patch__ = 2
9191__ver_sub__ = ''
9292__version__ = "%d.%d.%d%s" % (__ver_major__ , __ver_minor__ ,
9393 __ver_patch__ , __ver_sub__ )
You can’t perform that action at this time.
0 commit comments