Skip to content

Commit

Permalink
v0.19.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
temoto committed May 2, 2016
1 parent f61d05e commit fb067b6
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 2 deletions.
2 changes: 2 additions & 0 deletions AUTHORS
Expand Up @@ -131,3 +131,5 @@ Thanks To
* Levente Polyak
* Phus Lu
* Collin Stocks, fixing eventlet.green.urllib2.urlopen() so it accepts cafile, capath, or cadefault arguments
* Alexis Lee
* Steven Erenst
10 changes: 10 additions & 0 deletions NEWS
@@ -1,3 +1,13 @@
0.19.0
======
* ssl: IMPORTANT DoS FIX do_handshake_connect=False in server accept(); Thanks to Garth Mollett
* patcher: patch existing threading locks; Thanks to Alexis Lee
* green.urllib2: missing patched ssl module; Thanks to Collin RM Stocks
* wsgi: environ[headers_raw] tuple of unmodified name: value pairs
* test against modern pyopenssl 16.0.0 for Python 2.7+; Thanks to Victor Stinner
* wsgi: document compatibility with python `logging`
* Minor grammatical improvements and typo fixes to the docs; Thanks to Steven Erenst

0.18.4
======
* wsgi: change TCP_NODELAY to TCP_QUICKACK, ignore socket error when not available
Expand Down
2 changes: 1 addition & 1 deletion doc/real_index.html
Expand Up @@ -54,7 +54,7 @@ <h3>Installation</h3>
<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.4.tar.gz">eventlet-0.18.4.tar.gz</a></li>
<a class="reference external" href="https://pypi.python.org/packages/source/e/eventlet/eventlet-0.19.0.tar.gz">eventlet-0.19.0.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>

Expand Down
2 changes: 1 addition & 1 deletion eventlet/__init__.py
@@ -1,4 +1,4 @@
version_info = (0, 18, 4)
version_info = (0, 19, 0)
__version__ = '.'.join(map(str, version_info))

try:
Expand Down

0 comments on commit fb067b6

Please sign in to comment.