0.9.14 branding
This commit is contained in:
13
NEWS
13
NEWS
@@ -1,3 +1,16 @@
|
||||
0.9.14
|
||||
======
|
||||
* Many fixes to the ZeroMQ hub, which now requires version 2.0.10 or later. Thanks to Ben Ford.
|
||||
* ZeroMQ hub no longer depends on pollhub, and thus works on Windows (thanks, Alexey Borzenkov)
|
||||
* Better handling of connect errors on Windows, thanks again to Alexey Borzenkov.
|
||||
* More-robust Event delivery, thanks to Malcolm Cleaton
|
||||
* wsgi.py now distinguishes between an empty query string ("") and a non-existent query string (no entry in environ).
|
||||
* wsgi.py handles ipv6 correctly (thanks, redbo)
|
||||
* Better behavior in tpool when you give it nonsensical numbers, thanks to R. Tyler for the nonsense. :)
|
||||
* Fixed importing on 2.5 (#73, thanks to Ruijun Luo)
|
||||
* Hub doesn't hold on to invalid fds (#74, thanks to Edward George)
|
||||
* Documentation for eventlet.green.zmq, courtesy of Ben Ford
|
||||
|
||||
0.9.13
|
||||
======
|
||||
* ZeroMQ hub, and eventlet.green.zmq make supersockets green. Thanks to Ben Ford!
|
||||
|
@@ -41,7 +41,7 @@ easy_install eventlet
|
||||
|
||||
<p>Alternately, you can download the source tarball from <a href="http://pypi.python.org/pypi/eventlet/">PyPi</a>:
|
||||
<ul>
|
||||
<li><a href="http://pypi.python.org/packages/source/e/eventlet/eventlet-0.9.13.tar.gz">eventlet-0.9.13.tar.gz</a></li>
|
||||
<li><a href="http://pypi.python.org/packages/source/e/eventlet/eventlet-0.9.14.tar.gz">eventlet-0.9.14.tar.gz</a></li>
|
||||
</ul>
|
||||
</p>
|
||||
|
||||
|
@@ -1,4 +1,4 @@
|
||||
version_info = (0, 9, 14, "dev")
|
||||
version_info = (0, 9, 14)
|
||||
__version__ = ".".join(map(str, version_info))
|
||||
|
||||
try:
|
||||
|
Reference in New Issue
Block a user