Skip to content

Prepare for 0.18.2 release #523

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Oct 31, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions docs/credits.rst
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ Authors
Python-Future is largely written by Ed Schofield <[email protected]> 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 <[email protected]> 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 <[email protected]> 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 <[email protected]> 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
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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__)