0.13 release (branding)
This commit is contained in:
8
AUTHORS
8
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)
|
||||
|
||||
16
NEWS
16
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)
|
||||
|
||||
@@ -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.12.1.tar.gz">eventlet-0.12.1.tar.gz</a></li>
|
||||
<li><a href="https://pypi.python.org/packages/source/e/eventlet/eventlet-0.13.tar.gz">eventlet-0.13.tar.gz</a></li>
|
||||
</ul>
|
||||
</p>
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
version_info = (0, 13, 0, "dev")
|
||||
version_info = (0, 13, 0)
|
||||
__version__ = ".".join(map(str, version_info))
|
||||
|
||||
try:
|
||||
|
||||
Reference in New Issue
Block a user