0.15.1 release

This commit is contained in:
Sergey Shepelev
2014-08-15 04:16:48 +04:00
parent 8f98f8b634
commit bc7e130d4a
4 changed files with 8 additions and 2 deletions

View File

@@ -96,3 +96,4 @@ Thanks To
* Astrum Kuo, python3 compatibility fixes; greenthread.unlink() method * Astrum Kuo, python3 compatibility fixes; greenthread.unlink() method
* Davanum Srinivas, Python3 compatibility fixes * Davanum Srinivas, Python3 compatibility fixes
* Dmitriy Kruglyak, PyPy 2.3 compatibility fix * Dmitriy Kruglyak, PyPy 2.3 compatibility fix
* Jan Grant, Michael Kerrin, second simultaneous read (Github #94)

5
NEWS
View File

@@ -1,3 +1,8 @@
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
0.15 0.15
==== ====
* Python3 compatibility -- **not ready yet**; Thanks to Astrum Kuo, Davanum Srinivas, Jakub Stasiak, Victor Sergeyev * Python3 compatibility -- **not ready yet**; Thanks to Astrum Kuo, Davanum Srinivas, Jakub Stasiak, Victor Sergeyev

View File

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

View File

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