0.14 release (branding)

This commit is contained in:
Sergey Shepelev
2013-09-13 20:41:18 +04:00
parent 01690fc45b
commit 423951774a
4 changed files with 18 additions and 4 deletions

View File

@@ -33,6 +33,8 @@ Contributors
* Geoff Salmon
* Edward George
* Floris Bruynooghe
* Paul Oppenheim
* Jakub Stasiak
Linden Lab Contributors
-----------------------
@@ -84,6 +86,7 @@ Thanks To
* Peter Portante, save syscalls in socket.dup(), environ[REMOTE_PORT] in wsgi
* Peter Skirko, fixing socket.settimeout(0) bug
* 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)
* 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
View File

@@ -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
====
* hubs: kqueue support! Thanks to YAMAMOTO Takashi, Edward George

View File

@@ -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.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>
</ul>

View File

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