summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Shepelev <temotor@gmail.com>2013-01-14 04:07:23 +0400
committerSergey Shepelev <temotor@gmail.com>2013-01-14 04:07:23 +0400
commit8bb4033e657a09ba2b7a8166efd9ed998a99cd56 (patch)
tree12eef9b05cb44b5df4ac3cb84e33d8f374435d3c
parente837f37c0f1335acb3a70433f37f33d880b77bf0 (diff)
downloadeventlet-8bb4033e657a09ba2b7a8166efd9ed998a99cd56.tar.gz
0.11 bug fix release (branding)v0.11
-rw-r--r--AUTHORS2
-rw-r--r--NEWS8
-rw-r--r--doc/real_index.html4
-rw-r--r--eventlet/__init__.py2
4 files changed, 12 insertions, 4 deletions
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
</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: