0.14 release (branding)
This commit is contained in:
7
AUTHORS
7
AUTHORS
@@ -33,6 +33,8 @@ Contributors
|
|||||||
* Geoff Salmon
|
* Geoff Salmon
|
||||||
* Edward George
|
* Edward George
|
||||||
* Floris Bruynooghe
|
* Floris Bruynooghe
|
||||||
|
* Paul Oppenheim
|
||||||
|
* Jakub Stasiak
|
||||||
|
|
||||||
Linden Lab Contributors
|
Linden Lab Contributors
|
||||||
-----------------------
|
-----------------------
|
||||||
@@ -84,6 +86,7 @@ Thanks To
|
|||||||
* Peter Portante, save syscalls in socket.dup(), environ[REMOTE_PORT] in wsgi
|
* Peter Portante, save syscalls in socket.dup(), environ[REMOTE_PORT] in wsgi
|
||||||
* Peter Skirko, fixing socket.settimeout(0) bug
|
* Peter Skirko, fixing socket.settimeout(0) bug
|
||||||
* Derk Tegeler, Pre-cache proxied GreenSocket methods (Bitbucket #136)
|
* Derk Tegeler, Pre-cache proxied GreenSocket methods (Bitbucket #136)
|
||||||
* Jakub Stasiak, Travis integration, wsgi fix
|
|
||||||
* Paul Oppenheim, bug reports
|
|
||||||
* David Malcolm, optional "timeout" argument to the subprocess module (Bitbucket #89)
|
* David Malcolm, optional "timeout" argument to the subprocess module (Bitbucket #89)
|
||||||
|
* Eric Urban, fix wsgi.input 1-byte (Bitbucket #150)
|
||||||
|
* David Goetz, wsgi: Allow minimum_chunk_size to be overriden on a per request basis
|
||||||
|
* Dmitry Orlov, websocket: accept Upgrade: websocket (lowercase)
|
||||||
|
11
NEWS
11
NEWS
@@ -1,3 +1,14 @@
|
|||||||
|
0.14
|
||||||
|
====
|
||||||
|
* wsgi: handle connection socket timeouts; Thanks to Paul Oppenheim
|
||||||
|
* wsgi: close timed out client connections
|
||||||
|
* greenio: socket pypy compatibility; Thanks to Alex Gaynor
|
||||||
|
* wsgi: env['wsgi.input'] was returning 1 byte strings; Thanks to Eric Urban
|
||||||
|
* green.ssl: fix NameError; Github #17; Thanks to Jakub Stasiak
|
||||||
|
* websocket: allow "websocket" in lowercase in Upgrade header; Compatibility with current Google Chrome; Thanks to Dmitry Orlov
|
||||||
|
* wsgi: allow minimum_chunk_size to be overriden on a per request basis; Thanks to David Goetz
|
||||||
|
* wsgi: configurable socket_timeout
|
||||||
|
|
||||||
0.13
|
0.13
|
||||||
====
|
====
|
||||||
* hubs: kqueue support! Thanks to YAMAMOTO Takashi, Edward George
|
* hubs: kqueue support! Thanks to YAMAMOTO Takashi, Edward George
|
||||||
|
@@ -54,7 +54,7 @@ pip install eventlet
|
|||||||
<p>Alternately, you can download the source tarball:</p>
|
<p>Alternately, you can download the source tarball:</p>
|
||||||
<ul>
|
<ul>
|
||||||
<li>latest release from <a class="reference external" target="_blank" href="https://pypi.python.org/pypi/eventlet/">PyPi</a>:
|
<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.13.0.tar.gz">eventlet-0.13.0.tar.gz</a></li>
|
<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>
|
||||||
<li>or <a class="reference external" href="https://github.com/eventlet/eventlet/archive/master.zip">latest development version</a></li>
|
<li>or <a class="reference external" href="https://github.com/eventlet/eventlet/archive/master.zip">latest development version</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
version_info = (0, 14, 0, "dev")
|
version_info = (0, 14, 0)
|
||||||
__version__ = ".".join(map(str, version_info))
|
__version__ = ".".join(map(str, version_info))
|
||||||
|
|
||||||
try:
|
try:
|
||||||
|
Reference in New Issue
Block a user