diff --git a/NEWS b/NEWS index 727f824..4482e5a 100644 --- a/NEWS +++ b/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! diff --git a/doc/real_index.html b/doc/real_index.html index 81e30d1..abc00a8 100644 --- a/doc/real_index.html +++ b/doc/real_index.html @@ -41,7 +41,7 @@ easy_install eventlet
Alternately, you can download the source tarball from PyPi:
diff --git a/eventlet/__init__.py b/eventlet/__init__.py index 5c1bf8c..2b4c3e6 100644 --- a/eventlet/__init__.py +++ b/eventlet/__init__.py @@ -1,4 +1,4 @@ -version_info = (0, 9, 14, "dev") +version_info = (0, 9, 14) __version__ = ".".join(map(str, version_info)) try: