0.9.14 branding

This commit is contained in:
Ryan Williams
2011-01-24 11:40:12 -08:00
parent 0f8b72dcba
commit 46db3c0662
3 changed files with 15 additions and 2 deletions

13
NEWS
View File

@@ -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!

View File

@@ -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>

View File

@@ -1,4 +1,4 @@
version_info = (0, 9, 14, "dev")
version_info = (0, 9, 14)
__version__ = ".".join(map(str, version_info))
try: