0.11 bug fix release (branding)
This commit is contained in:
2
AUTHORS
2
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
|
||||
|
8
NEWS
8
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)
|
||||
|
@@ -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>
|
||||
|
||||
|
@@ -1,4 +1,4 @@
|
||||
version_info = (0, 11, 0, "dev")
|
||||
version_info = (0, 11, 0)
|
||||
__version__ = ".".join(map(str, version_info))
|
||||
|
||||
try:
|
||||
|
Reference in New Issue
Block a user