Skip to content

Commit c9e4e96

Browse files
committed
Prepare for 0.18.1 release
1 parent ef8bcc3 commit c9e4e96

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

docs/whatsnew.rst

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,12 @@
33
What's New
44
**********
55

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+
612
What's new in version 0.18.0 (2019-10-09)
713
=========================================
814
This is a major bug-fix and feature release, including:

src/future/__init__.py

Lines changed: 1 addition & 1 deletion
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__ = 0
90+
__ver_patch__ = 1
9191
__ver_sub__ = ''
9292
__version__ = "%d.%d.%d%s" % (__ver_major__, __ver_minor__,
9393
__ver_patch__, __ver_sub__)

0 commit comments

Comments
 (0)