v0.16 release
This commit is contained in:
10
AUTHORS
10
AUTHORS
@@ -101,3 +101,13 @@ Thanks To
|
||||
* Tushar Gohad, wsgi: Support optional headers w/ "100 Continue" responses
|
||||
* raylu, fixing operator precedence bug in eventlet.wsgi
|
||||
* Christoph Gysin, PEP 8 conformance
|
||||
* Andrey Gubarev
|
||||
* Corey Wright
|
||||
* Deva
|
||||
* Johannes Erdfelt
|
||||
* Kevin
|
||||
* QthCN
|
||||
* Steven Hardy
|
||||
* Stuart McLaren
|
||||
* Tomaz Muraus
|
||||
* Victor Stinner
|
||||
|
17
NEWS
17
NEWS
@@ -1,9 +1,18 @@
|
||||
0.16.0 (not released yet)
|
||||
=========================
|
||||
0.16.0
|
||||
======
|
||||
|
||||
* Fix SSL socket wrapping and Python 2.7.9 compatibility; Thanks to Jakub Stasiak
|
||||
* Fix monkey_patch() on Python 3; Thanks to Victor Stinner
|
||||
* Fix "maximum recursion depth exceeded in GreenSocket.__del__"; Thanks to Jakub Stasiak
|
||||
* db_pool: BaseConnectionPool.clear updates .current_size #139; Thanks to Andrey Gubarev
|
||||
* Fix __str__ method on the TimeoutExpired exception class.; Thanks to Tomaz Muraus
|
||||
* hubs: drop Twisted support
|
||||
* removed deprecated modules: api, most of coros, pool, proc, processes and util
|
||||
* improved Python 3 compatibility (including patch by raylu)
|
||||
* Removed deprecated modules: api, most of coros, pool, proc, processes and util
|
||||
* Improved Python 3 compatibility (including patch by raylu); Thanks to Jakub Stasiak
|
||||
* Allow more graceful shutdown of wsgi server; Thanks to Stuart McLaren
|
||||
* wsgi.input: Make send_hundred_continue_headers() a public API; Thanks to Tushar Gohad
|
||||
* tpool: Windows compatibility, fix ResourceWarning. Thanks to Victor Stinner
|
||||
* tests: Fix timers not cleaned up on MySQL test skips; Thanks to Corey Wright
|
||||
|
||||
0.15.2
|
||||
======
|
||||
|
@@ -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.15.2.tar.gz">eventlet-0.15.2.tar.gz</a></li>
|
||||
<a class="reference external" href="https://pypi.python.org/packages/source/e/eventlet/eventlet-0.16.0.tar.gz">eventlet-0.16.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, 16, 0, 'dev')
|
||||
version_info = (0, 16, 0)
|
||||
__version__ = '.'.join(map(str, version_info))
|
||||
|
||||
try:
|
||||
|
Reference in New Issue
Block a user