0.15 release
This commit is contained in:
4
AUTHORS
4
AUTHORS
@@ -93,4 +93,6 @@ Thanks To
|
||||
* David Goetz, wsgi: Allow minimum_chunk_size to be overriden on a per request basis
|
||||
* Dmitry Orlov, websocket: accept Upgrade: websocket (lowercase)
|
||||
* Zhang Hua, profile: accumulate results between runs (Bitbucket #162)
|
||||
* Astrum Kuo, python3 compatibility fixes
|
||||
* Astrum Kuo, python3 compatibility fixes; greenthread.unlink() method
|
||||
* Davanum Srinivas, Python3 compatibility fixes
|
||||
* Dmitriy Kruglyak, PyPy 2.3 compatibility fix
|
||||
|
14
NEWS
14
NEWS
@@ -1,3 +1,17 @@
|
||||
0.15
|
||||
====
|
||||
* Python3 compatibility -- **not ready yet**; Thanks to Astrum Kuo, Davanum Srinivas, Jakub Stasiak, Victor Sergeyev
|
||||
* coros: remove Actor which was deprecated in 2010-01
|
||||
* saranwrap: remove saranwrap which was deprecated in 2010-02
|
||||
* PyPy compatibility fixes; Thanks to Dmitriy Kruglyak, Jakub Stasiak
|
||||
* green.profile: accumulate results between runs; Thanks to Zhang Hua
|
||||
* greenthread: add .unlink() method; Thanks to Astrum Kuo
|
||||
* packaging: Generate universal wheels; Thanks to Jakub Stasiak
|
||||
* queue: Make join not wait if there are no unfinished tasks; Thanks to Jakub Stasiak
|
||||
* tpool: proxy __enter__, __exit__ fixes Bitbucket-158; Thanks to Eric Urban
|
||||
* websockets: Add websockets13 support; handle lack of Upgrade header; Thanks to Edward George
|
||||
* wsgi: capitalize_response_headers option
|
||||
|
||||
0.14
|
||||
====
|
||||
* wsgi: handle connection socket timeouts; Thanks to Paul Oppenheim
|
||||
|
@@ -54,7 +54,7 @@ pip install eventlet
|
||||
<p>Alternately, you can download the source tarball:</p>
|
||||
<ul>
|
||||
<li>latest release from <a class="reference external" target="_blank" href="https://pypi.python.org/pypi/eventlet/">PyPi</a>:
|
||||
<a class="reference external" href="https://pypi.python.org/packages/source/e/eventlet/eventlet-0.14.0.tar.gz">eventlet-0.14.0.tar.gz</a></li>
|
||||
<a class="reference external" href="https://pypi.python.org/packages/source/e/eventlet/eventlet-0.15.0.tar.gz">eventlet-0.15.0.tar.gz</a></li>
|
||||
<li>or <a class="reference external" href="https://github.com/eventlet/eventlet/archive/master.zip">latest development version</a></li>
|
||||
</ul>
|
||||
|
||||
|
@@ -1,4 +1,4 @@
|
||||
version_info = (0, 15, 0, "dev")
|
||||
version_info = (0, 15, 0)
|
||||
__version__ = ".".join(map(str, version_info))
|
||||
|
||||
try:
|
||||
|
Reference in New Issue
Block a user