From b86c75dc976ce6d0a74ffbc0ac738c9c2a0562db Mon Sep 17 00:00:00 2001 From: Sergey Shepelev Date: Thu, 24 Jan 2013 02:36:30 +0400 Subject: [PATCH] 0.12 release (branding) --- AUTHORS | 2 ++ NEWS | 9 +++++++++ doc/real_index.html | 2 +- eventlet/__init__.py | 2 +- 4 files changed, 13 insertions(+), 2 deletions(-) diff --git a/AUTHORS b/AUTHORS index 04b1a41..1862073 100644 --- a/AUTHORS +++ b/AUTHORS @@ -30,6 +30,7 @@ Contributors * Nick V * Daniele Varrazzo * Ryan Williams +* Geoff Salmon Linden Lab Contributors ----------------------- @@ -79,3 +80,4 @@ Thanks To * Raymond Lu, fixing busy-wait in eventlet.green.ssl.socket.sendall() * Thomas Grainger, webcrawler example small fix, "requests" library import bug report * Peter Portante, save syscalls in socket.dup(), environ[REMOTE_PORT] in wsgi +* Peter Skirko, fixing socket.settimeout(0) bug diff --git a/NEWS b/NEWS index 53804eb..534cc60 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,12 @@ +0.12 +==== +* zmq: Fix 100% busy CPU in idle after .bind(PUB) (thanks to Geoff Salmon) +* greenio: Fix socket.settimeout() did not switch back to blocking mode (thanks to Peter Skirko) +* greenio: socket.dup() made excess fcntl syscalls (thanks to Peter Portante) +* setup: Remove legacy --without-greenlet option and unused httplib2 dependency (thanks to Thomas Grainger) +* wsgi: environ[REMOTE_PORT], also available in log_format, log accept event (thanks to Peter Portante) +* tests: Support libzmq 3.0 SNDHWM option (thanks to Geoff Salmon) + 0.11 ==== * ssl: Fix 100% busy CPU in socket.sendall() (thanks to Raymon Lu) diff --git a/doc/real_index.html b/doc/real_index.html index ba96569..824ecbf 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 9624e65..f517de4 100644 --- a/eventlet/__init__.py +++ b/eventlet/__init__.py @@ -1,4 +1,4 @@ -version_info = (0, 12, 0, "dev") +version_info = (0, 12, 0) __version__ = ".".join(map(str, version_info)) try: