0.11 bug fix release (branding)

This commit is contained in:
Sergey Shepelev
2013-01-14 04:07:23 +04:00
parent e837f37c0f
commit 8bb4033e65
4 changed files with 12 additions and 4 deletions

View File

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

8
NEWS
View File

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

View File

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

View File

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