diff options
| author | Sergey Shepelev <temotor@gmail.com> | 2013-01-24 02:36:30 +0400 |
|---|---|---|
| committer | Sergey Shepelev <temotor@gmail.com> | 2013-01-24 02:36:30 +0400 |
| commit | b86c75dc976ce6d0a74ffbc0ac738c9c2a0562db (patch) | |
| tree | 68d577edac139e8893eac167a1c8172a4ae84127 | |
| parent | 42b585d08a7b3b53d34fe4836ba4da7162f034d4 (diff) | |
| download | eventlet-b86c75dc976ce6d0a74ffbc0ac738c9c2a0562db.tar.gz | |
0.12 release (branding)v0.12
| -rw-r--r-- | AUTHORS | 2 | ||||
| -rw-r--r-- | NEWS | 9 | ||||
| -rw-r--r-- | doc/real_index.html | 2 | ||||
| -rw-r--r-- | eventlet/__init__.py | 2 |
4 files changed, 13 insertions, 2 deletions
@@ -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 @@ -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 <p>Alternately, you can download the source tarball from <a href="https://pypi.python.org/pypi/eventlet/">PyPi</a>: <ul> -<li><a href="https://pypi.python.org/packages/source/e/eventlet/eventlet-0.11.0.tar.gz">eventlet-0.11.0.tar.gz</a></li> +<li><a href="https://pypi.python.org/packages/source/e/eventlet/eventlet-0.12.0.tar.gz">eventlet-0.12.0.tar.gz</a></li> </ul> </p> 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: |
