Skip to content

Commit

Permalink
Merge pull request PythonCharmers#523 from jmadler/master
Browse files Browse the repository at this point in the history
Prepare for 0.18.2 release
  • Loading branch information
jmadler committed Oct 31, 2019
2 parents a3e3008 + ad57383 commit 01a1d31
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 1 deletion.
4 changes: 4 additions & 0 deletions docs/credits.rst
Expand Up @@ -48,6 +48,7 @@ Authors
Python-Future is largely written by Ed Schofield <ed@pythoncharmers.com> with the help of various contributors:

- Jordan Adler
- Jeroen Akkerman
- Kyle Altendorf
- Grant Bakker
- Jacob Beck
Expand All @@ -70,6 +71,7 @@ Python-Future is largely written by Ed Schofield <ed@pythoncharmers.com> with th
- Michael Joseph
- Waldemar Kornewald
- Alexey Kotlyarov
- Steve Kowalik
- Lion Krischer
- Marcin Kuzminski
- Joshua Landau
Expand All @@ -81,6 +83,7 @@ Python-Future is largely written by Ed Schofield <ed@pythoncharmers.com> with th
- Anika Mukherji
- Jon Parise
- Matthew Parnell
- Tom Picton
- Miga Purg
- Éloi Rivard
- Sesh Sadasivam
Expand All @@ -91,6 +94,7 @@ Python-Future is largely written by Ed Schofield <ed@pythoncharmers.com> with th
- Sameera Somisetty
- Louis Sautier
- Gregory P. Smith
- Chase Sterling
- Daniel Szoska
- Flaviu Tamas
- Jeff Tratner
Expand Down
13 changes: 13 additions & 0 deletions docs/whatsnew.rst
Expand Up @@ -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_()
Expand Down
2 changes: 1 addition & 1 deletion src/future/__init__.py
Expand Up @@ -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__)

0 comments on commit 01a1d31

Please sign in to comment.