Skip to content

Commit 01a1d31

Browse files
authored
Merge pull request #523 from jmadler/master
Prepare for 0.18.2 release
2 parents a3e3008 + ad57383 commit 01a1d31

File tree

3 files changed

+18
-1
lines changed

3 files changed

+18
-1
lines changed

docs/credits.rst

+4
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ Authors
4848
Python-Future is largely written by Ed Schofield <[email protected]> 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 <[email protected]> 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 <[email protected]> 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 <[email protected]> with th
9194
- Sameera Somisetty
9295
- Louis Sautier
9396
- Gregory P. Smith
97+
- Chase Sterling
9498
- Daniel Szoska
9599
- Flaviu Tamas
96100
- Jeff Tratner

docs/whatsnew.rst

+13
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,19 @@
33
What'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+
619
What's new in version 0.18.1 (2019-10-09)
720
=========================================
821
This is a minor bug-fix release containing a fix for raise_()

src/future/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@
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__)

0 commit comments

Comments
 (0)