diff --git a/AUTHORS b/AUTHORS index 3473e6a..541de37 100644 --- a/AUTHORS +++ b/AUTHORS @@ -76,3 +76,5 @@ Thanks To * Nick Vatamaniuc, Windows SO_REUSEADDR patch (#83) * 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 diff --git a/NEWS b/NEWS index c2b19a0..53804eb 100644 --- a/NEWS +++ b/NEWS @@ -1,5 +1,11 @@ +0.11 +==== +* ssl: Fix 100% busy CPU in socket.sendall() (thanks to Raymon Lu) +* zmq: Return linger argument to Socket.close() (thanks to Eric Windisch) +* tests: SSL tests were always skipped due to bug in skip_if_no_ssl decorator + 0.10 -====== +==== * greenio: Fix relative seek() (thanks to AlanP) * db_pool: Fix pool.put() TypeError with min_size > 1 (thanks to Jessica Qi) * greenthread: Prevent infinite recursion with linking to current greenthread (thanks to Edward George) diff --git a/doc/real_index.html b/doc/real_index.html index da44f43..ba96569 100644 --- a/doc/real_index.html +++ b/doc/real_index.html @@ -39,9 +39,9 @@ easy_install eventlet

-

Alternately, you can download the source tarball from PyPi: +

Alternately, you can download the source tarball from PyPi:

diff --git a/eventlet/__init__.py b/eventlet/__init__.py index 7d01b9a..32d7bbf 100644 --- a/eventlet/__init__.py +++ b/eventlet/__init__.py @@ -1,4 +1,4 @@ -version_info = (0, 11, 0, "dev") +version_info = (0, 11, 0) __version__ = ".".join(map(str, version_info)) try: