v0.18.2 release

This commit is contained in:
Sergey Shepelev
2016-02-09 20:08:07 +05:00
parent b7380fdc70
commit 5bf0a6f32b
3 changed files with 8 additions and 4 deletions

4
NEWS
View File

@@ -1,3 +1,7 @@
0.18.2
======
* wsgi: Fix data loss on partial writes (socket.send); Thanks to Jakub Stasiak
0.18.1
======
* patcher: Fix AttributeError in subprocess communicate()

View File

@@ -46,15 +46,15 @@
<h3>Installation</h3>
<p>To install eventlet, simply:
<p>To install Eventlet, simply:
<pre>
pip install eventlet
</pre></p>
<p>Alternately, you can download the source tarball:</p>
<p>Alternately, you can download the source archive:</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.18.1.tar.gz">eventlet-0.18.1.tar.gz</a></li>
<a class="reference external" href="https://pypi.python.org/packages/source/e/eventlet/eventlet-0.18.2.tar.gz">eventlet-0.18.2.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, 18, 1)
version_info = (0, 18, 2)
__version__ = '.'.join(map(str, version_info))
try: