File tree 3 files changed +18
-1
lines changed
3 files changed +18
-1
lines changed Original file line number Diff line number Diff line change @@ -48,6 +48,7 @@ Authors
48
48
Python-Future is largely written by Ed Schofield <ed@pythoncharmers.com> with the help of various contributors:
49
49
50
50
- Jordan Adler
51
+ - Jeroen Akkerman
51
52
- Kyle Altendorf
52
53
- Grant Bakker
53
54
- Jacob Beck
@@ -70,6 +71,7 @@ Python-Future is largely written by Ed Schofield <ed@pythoncharmers.com> with th
70
71
- Michael Joseph
71
72
- Waldemar Kornewald
72
73
- Alexey Kotlyarov
74
+ - Steve Kowalik
73
75
- Lion Krischer
74
76
- Marcin Kuzminski
75
77
- Joshua Landau
@@ -81,6 +83,7 @@ Python-Future is largely written by Ed Schofield <ed@pythoncharmers.com> with th
81
83
- Anika Mukherji
82
84
- Jon Parise
83
85
- Matthew Parnell
86
+ - Tom Picton
84
87
- Miga Purg
85
88
- Éloi Rivard
86
89
- Sesh Sadasivam
@@ -91,6 +94,7 @@ Python-Future is largely written by Ed Schofield <ed@pythoncharmers.com> with th
91
94
- Sameera Somisetty
92
95
- Louis Sautier
93
96
- Gregory P. Smith
97
+ - Chase Sterling
94
98
- Daniel Szoska
95
99
- Flaviu Tamas
96
100
- Jeff Tratner
Original file line number Diff line number Diff line change 3
3
What's New
4
4
**********
5
5
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
+
6
19
What's new in version 0.18.1 (2019-10-09)
7
20
=========================================
8
21
This is a minor bug-fix release containing a fix for raise_()
Original file line number Diff line number Diff line change 87
87
__copyright__ = 'Copyright 2013-2019 Python Charmers Pty Ltd'
88
88
__ver_major__ = 0
89
89
__ver_minor__ = 18
90
- __ver_patch__ = 1
90
+ __ver_patch__ = 2
91
91
__ver_sub__ = ''
92
92
__version__ = "%d.%d.%d%s" % (__ver_major__ , __ver_minor__ ,
93
93
__ver_patch__ , __ver_sub__ )
You can’t perform that action at this time.
0 commit comments