From e40cd680873e3f0d94ed29e9474dd057585c53ec Mon Sep 17 00:00:00 2001 From: Sergey Shepelev Date: Tue, 2 Jul 2013 20:19:32 +0400 Subject: [PATCH] 0.13 release (branding) --- AUTHORS | 8 +++++++- NEWS | 16 ++++++++++++++++ doc/real_index.html | 2 +- eventlet/__init__.py | 2 +- 4 files changed, 25 insertions(+), 3 deletions(-) diff --git a/AUTHORS b/AUTHORS index 1862073..3142c6e 100644 --- a/AUTHORS +++ b/AUTHORS @@ -31,6 +31,8 @@ Contributors * Daniele Varrazzo * Ryan Williams * Geoff Salmon +* Edward George +* Floris Bruynooghe Linden Lab Contributors ----------------------- @@ -78,6 +80,10 @@ Thanks To * Clay Gerrard, wsgi handle socket closed by client (#95) * Eric Windisch, zmq getsockopt(EVENTS) wake correct threads (pull request 22) * Raymond Lu, fixing busy-wait in eventlet.green.ssl.socket.sendall() -* Thomas Grainger, webcrawler example small fix, "requests" library import bug report +* Thomas Grainger, webcrawler example small fix, "requests" library import bug report, Travis integration * 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) diff --git a/NEWS b/NEWS index 534cc60..991a8a5 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,19 @@ +0.13 +==== +* hubs: kqueue support! Thanks to YAMAMOTO Takashi, Edward George +* greenio: Fix AttributeError on MacOSX; Bitbucket #136; Thanks to Derk Tegeler +* green: subprocess: Fix subprocess.communicate() block on Python 2.7; Thanks to Edward George +* green: select: ensure that hub can .wait() at least once before timeout; Thanks to YAMAMOTO Takashi +* tpool: single request queue to avoid deadlocks; Bitbucket pull request 31,32; Thanks to Edward George +* zmq: pyzmq 13.x compatibility; Thanks to Edward George +* green: subprocess: Popen.wait() accepts new `timeout` kwarg; Python 3.3 and RHEL 6.1 compatibility +* hubs: EVENTLET_HUB can point to external modules; Thanks to Edward George +* semaphore: support timeout for acquire(); Thanks to Justin Patrin +* support: do not clear sys.exc_info if can be preserved (greenlet >= 0.3.2); Thanks to Edward George +* Travis continous integration; Thanks to Thomas Grainger, Jakub Stasiak +* wsgi: minimum_chunk_size of last Server altered all previous (global variable); Thanks to Jakub Stasiak +* doc: hubs: Point to the correct function in exception message; Thanks to Floris Bruynooghe + 0.12 ==== * zmq: Fix 100% busy CPU in idle after .bind(PUB) (thanks to Geoff Salmon) diff --git a/doc/real_index.html b/doc/real_index.html index 5eea321..a018eb0 100644 --- a/doc/real_index.html +++ b/doc/real_index.html @@ -41,7 +41,7 @@ easy_install eventlet

Alternately, you can download the source tarball from PyPi:

diff --git a/eventlet/__init__.py b/eventlet/__init__.py index 4c5d658..a3e0112 100644 --- a/eventlet/__init__.py +++ b/eventlet/__init__.py @@ -1,4 +1,4 @@ -version_info = (0, 13, 0, "dev") +version_info = (0, 13, 0) __version__ = ".".join(map(str, version_info)) try: