v0.18.0 release

This commit is contained in:
Sergey Shepelev
2016-01-23 13:58:35 +05:00
parent 17a2f70078
commit 2865c23837
4 changed files with 16 additions and 9 deletions

11
AUTHORS
View File

@@ -39,6 +39,8 @@ Contributors
* Victor Sergeyev
* David Szotten
* Victor Stinner
* Samuel Merritt
* Eric Urban
Linden Lab Contributors
-----------------------
@@ -91,7 +93,6 @@ Thanks To
* Peter Skirko, fixing socket.settimeout(0) bug
* Derk Tegeler, Pre-cache proxied GreenSocket methods (Bitbucket #136)
* David Malcolm, optional "timeout" argument to the subprocess module (Bitbucket #89)
* Eric Urban, fix wsgi.input 1-byte (Bitbucket #150)
* David Goetz, wsgi: Allow minimum_chunk_size to be overriden on a per request basis
* Dmitry Orlov, websocket: accept Upgrade: websocket (lowercase)
* Zhang Hua, profile: accumulate results between runs (Bitbucket #162)
@@ -121,3 +122,11 @@ Thanks To
* Antonio Cuni, fix fd double close on PyPy
* Seyeong Kim
* Ihar Hrachyshka
* Janusz Harkot
* Fukuchi Daisuke
* Ramakrishnan G
* ashutosh-mishra
* Azhar Hussain
* Josh VanderLinden
* Levente Polyak
* Phus Lu

6
NEWS
View File

@@ -1,6 +1,5 @@
0.18.0 (not released yet)
=========================
0.18.0
======
* greenio: Fixed a bug that could cause send() to start an endless loop on
ENOTCONN; Thanks to Seyeong Kim
* wsgi: Fixed UNIX socket address being trimmed in "wsgi starting" log; Thanks
@@ -59,7 +58,6 @@ Backwards incompatible:
consistent with Python standard library and removes a source of very subtle
errors
0.17.4
======
* ssl: incorrect initalization of default context; Thanks to stuart-mclaren

View File

@@ -1,8 +1,8 @@
<!doctype html>
<html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta charset="UTF-8" />
<title>Eventlet Networking Library</title>
<link rel="stylesheet" href="doc/_static/default.css" type="text/css" />
@@ -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.17.4.tar.gz">eventlet-0.17.4.tar.gz</a></li>
<a class="reference external" href="https://pypi.python.org/packages/source/e/eventlet/eventlet-0.18.0.tar.gz">eventlet-0.18.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>

View File

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