We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9a24fbd commit 181b4f5Copy full SHA for 181b4f5
docs/whatsnew.rst
@@ -5,6 +5,14 @@ What's New
5
6
.. _whats-new-0.15.x:
7
8
+What's new in version 0.15.3 (2015-02-...)
9
+==========================================
10
+
11
+This is a minor bug-fix release:
12
13
+- Fix ``newbytes`` constructor bug (issue #163)
14
15
16
What's new in version 0.15.2 (2015-09-11)
17
=========================================
18
src/future/__init__.py
@@ -88,7 +88,7 @@
88
__copyright__ = 'Copyright 2013-2015 Python Charmers Pty Ltd'
89
__ver_major__ = 0
90
__ver_minor__ = 15
91
-__ver_patch__ = 2
92
-__ver_sub__ = ''
+__ver_patch__ = 3
+__ver_sub__ = '-dev'
93
__version__ = "%d.%d.%d%s" % (__ver_major__, __ver_minor__,
94
__ver_patch__, __ver_sub__)
0 commit comments