From 423951774a1b1aa014794c83c530a3ad2af9601c Mon Sep 17 00:00:00 2001 From: Sergey Shepelev Date: Fri, 13 Sep 2013 20:41:18 +0400 Subject: [PATCH] 0.14 release (branding) --- AUTHORS | 7 +++++-- NEWS | 11 +++++++++++ doc/real_index.html | 2 +- eventlet/__init__.py | 2 +- 4 files changed, 18 insertions(+), 4 deletions(-) diff --git a/AUTHORS b/AUTHORS index 3142c6e..71286ce 100644 --- a/AUTHORS +++ b/AUTHORS @@ -33,6 +33,8 @@ Contributors * Geoff Salmon * Edward George * Floris Bruynooghe +* Paul Oppenheim +* Jakub Stasiak Linden Lab Contributors ----------------------- @@ -84,6 +86,7 @@ Thanks To * Peter Portante, save syscalls in socket.dup(), environ[REMOTE_PORT] in wsgi * Peter Skirko, fixing socket.settimeout(0) bug * Derk Tegeler, Pre-cache proxied GreenSocket methods (Bitbucket #136) -* Jakub Stasiak, Travis integration, wsgi fix -* Paul Oppenheim, bug reports * 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) diff --git a/NEWS b/NEWS index 991a8a5..3296ce2 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,14 @@ +0.14 +==== +* wsgi: handle connection socket timeouts; Thanks to Paul Oppenheim +* wsgi: close timed out client connections +* greenio: socket pypy compatibility; Thanks to Alex Gaynor +* wsgi: env['wsgi.input'] was returning 1 byte strings; Thanks to Eric Urban +* green.ssl: fix NameError; Github #17; Thanks to Jakub Stasiak +* websocket: allow "websocket" in lowercase in Upgrade header; Compatibility with current Google Chrome; Thanks to Dmitry Orlov +* wsgi: allow minimum_chunk_size to be overriden on a per request basis; Thanks to David Goetz +* wsgi: configurable socket_timeout + 0.13 ==== * hubs: kqueue support! Thanks to YAMAMOTO Takashi, Edward George diff --git a/doc/real_index.html b/doc/real_index.html index e272595..0747cf5 100644 --- a/doc/real_index.html +++ b/doc/real_index.html @@ -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 852e289..78d6c2e 100644 --- a/eventlet/__init__.py +++ b/eventlet/__init__.py @@ -1,4 +1,4 @@ -version_info = (0, 14, 0, "dev") +version_info = (0, 14, 0) __version__ = ".".join(map(str, version_info)) try: