v0.16.1 release (eventlet.util zombie sneaked into previous build)

This commit is contained in:
Sergey Shepelev
2015-01-14 05:26:06 +03:00
parent bc03d7ac60
commit a2cd9be0c2
3 changed files with 11 additions and 6 deletions

13
NEWS
View File

@@ -1,3 +1,8 @@
0.16.1
======
* Wheel build 0.16.0 incorrectly shipped removed module eventlet.util.
0.16.0
======
@@ -16,13 +21,13 @@
0.15.2
======
greenio: fixed memory leak, introduced in 0.15.1; Thanks to Michael Kerrin, Tushar Gohad
wsgi: Support optional headers w/ "100 Continue" responses; Thanks to Tushar Gohad
* greenio: fixed memory leak, introduced in 0.15.1; Thanks to Michael Kerrin, Tushar Gohad
* wsgi: Support optional headers w/ "100 Continue" responses; Thanks to Tushar Gohad
0.15.1
======
greenio: Fix second simultaneous read (parallel paramiko issue); Thanks to Jan Grant, Michael Kerrin
db_pool: customizable connection cleanup function; Thanks to Avery Fay
* greenio: Fix second simultaneous read (parallel paramiko issue); Thanks to Jan Grant, Michael Kerrin
* db_pool: customizable connection cleanup function; Thanks to Avery Fay
0.15
====

View File

@@ -54,7 +54,7 @@ pip install eventlet
<p>Alternately, you can download the source tarball:</p>
<ul>
<li>latest release from <a class="reference external" target="_blank" href="https://pypi.python.org/pypi/eventlet/">PyPi</a>:
<a class="reference external" href="https://pypi.python.org/packages/source/e/eventlet/eventlet-0.16.0.tar.gz">eventlet-0.16.0.tar.gz</a></li>
<a class="reference external" href="https://pypi.python.org/packages/source/e/eventlet/eventlet-0.16.1.tar.gz">eventlet-0.16.1.tar.gz</a></li>
<li>or <a class="reference external" href="https://github.com/eventlet/eventlet/archive/master.zip">latest development version</a></li>
</ul>

View File

@@ -1,4 +1,4 @@
version_info = (0, 16, 0)
version_info = (0, 16, 1)
__version__ = '.'.join(map(str, version_info))
try: