From 2865c23837980c987e79562d15633ef4a032b8c6 Mon Sep 17 00:00:00 2001 From: Sergey Shepelev Date: Sat, 23 Jan 2016 13:58:35 +0500 Subject: [PATCH] v0.18.0 release --- AUTHORS | 11 ++++++++++- NEWS | 6 ++---- doc/real_index.html | 6 +++--- eventlet/__init__.py | 2 +- 4 files changed, 16 insertions(+), 9 deletions(-) diff --git a/AUTHORS b/AUTHORS index dd080b2..69e38c5 100644 --- a/AUTHORS +++ b/AUTHORS @@ -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 diff --git a/NEWS b/NEWS index 9a1e0b1..35c1c8f 100644 --- a/NEWS +++ b/NEWS @@ -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 diff --git a/doc/real_index.html b/doc/real_index.html index d9a7d60..092e5ff 100644 --- a/doc/real_index.html +++ b/doc/real_index.html @@ -1,8 +1,8 @@ - + - + Eventlet Networking Library @@ -54,7 +54,7 @@ pip install eventlet

Alternately, you can download the source tarball:

diff --git a/eventlet/__init__.py b/eventlet/__init__.py index 1bdcf52..2b52955 100644 --- a/eventlet/__init__.py +++ b/eventlet/__init__.py @@ -1,4 +1,4 @@ -version_info = (0, 17, 4) +version_info = (0, 18, 0) __version__ = '.'.join(map(str, version_info)) try: