0.12 release (branding)
This commit is contained in:
2
AUTHORS
2
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
|
||||
|
9
NEWS
9
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)
|
||||
|
@@ -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>
|
||||
|
||||
|
@@ -1,4 +1,4 @@
|
||||
version_info = (0, 12, 0, "dev")
|
||||
version_info = (0, 12, 0)
|
||||
__version__ = ".".join(map(str, version_info))
|
||||
|
||||
try:
|
||||
|
Reference in New Issue
Block a user