We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ef8bcc3 commit c9e4e96Copy full SHA for c9e4e96
docs/whatsnew.rst
@@ -3,6 +3,12 @@
3
What's New
4
**********
5
6
+What's new in version 0.18.1 (2019-10-09)
7
+=========================================
8
+This is a minor bug-fix release containing a fix for raise_()
9
+when passed an exception that's not an Exception (e.g. BaseException
10
+subclasses)
11
+
12
What's new in version 0.18.0 (2019-10-09)
13
=========================================
14
This is a major bug-fix and feature release, including:
src/future/__init__.py
@@ -87,7 +87,7 @@
87
__copyright__ = 'Copyright 2013-2019 Python Charmers Pty Ltd'
88
__ver_major__ = 0
89
__ver_minor__ = 18
90
-__ver_patch__ = 0
+__ver_patch__ = 1
91
__ver_sub__ = ''
92
__version__ = "%d.%d.%d%s" % (__ver_major__, __ver_minor__,
93
__ver_patch__, __ver_sub__)
0 commit comments