diff options
| author | Sergey Shepelev <temotor@gmail.com> | 2013-01-14 04:07:23 +0400 |
|---|---|---|
| committer | Sergey Shepelev <temotor@gmail.com> | 2013-01-14 04:07:23 +0400 |
| commit | 8bb4033e657a09ba2b7a8166efd9ed998a99cd56 (patch) | |
| tree | 12eef9b05cb44b5df4ac3cb84e33d8f374435d3c | |
| parent | e837f37c0f1335acb3a70433f37f33d880b77bf0 (diff) | |
| download | eventlet-8bb4033e657a09ba2b7a8166efd9ed998a99cd56.tar.gz | |
0.11 bug fix release (branding)v0.11
| -rw-r--r-- | AUTHORS | 2 | ||||
| -rw-r--r-- | NEWS | 8 | ||||
| -rw-r--r-- | doc/real_index.html | 4 | ||||
| -rw-r--r-- | eventlet/__init__.py | 2 |
4 files changed, 12 insertions, 4 deletions
@@ -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 @@ -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 </pre></p> -<p>Alternately, you can download the source tarball from <a href="http://pypi.python.org/pypi/eventlet/">PyPi</a>: +<p>Alternately, you can download the source tarball from <a href="https://pypi.python.org/pypi/eventlet/">PyPi</a>: <ul> -<li><a href="http://pypi.python.org/packages/source/e/eventlet/eventlet-0.10.0.tar.gz#md5=0738c05dc364c9b48775be228a85e832">eventlet-0.10.0.tar.gz</a></li> +<li><a href="https://pypi.python.org/packages/source/e/eventlet/eventlet-0.11.0.tar.gz">eventlet-0.11.0.tar.gz</a></li> </ul> </p> 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: |
