v0.18.4 release

This commit is contained in:
Sergey Shepelev
2016-02-17 22:37:03 +05:00
parent ba4fddbb9c
commit d473c3eaf9
3 changed files with 6 additions and 2 deletions

4
NEWS
View File

@@ -1,3 +1,7 @@
0.18.4
======
* wsgi: change TCP_NODELAY to TCP_QUICKACK, ignore socket error when not available
0.18.3
======
* wsgi: Use buffered writes - fixes partial socket.send without custom

View File

@@ -54,7 +54,7 @@ pip install eventlet
<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.3.tar.gz">eventlet-0.18.3.tar.gz</a></li>
<a class="reference external" href="https://pypi.python.org/packages/source/e/eventlet/eventlet-0.18.4.tar.gz">eventlet-0.18.4.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, 3)
version_info = (0, 18, 4)
__version__ = '.'.join(map(str, version_info))
try: