diff options
| author | Tim Burke <tim.burke@gmail.com> | 2019-05-23 17:19:13 -0700 |
|---|---|---|
| committer | Jakub Stasiak <jakub@stasiak.at> | 2019-05-24 10:24:11 +0200 |
| commit | 5b04426586d88aaf23dcb9cd86cd7bf53c974c1e (patch) | |
| tree | b77b2ec004d56d1cb21b4a65aa49f22ef6b53210 | |
| parent | 1df1fb16316749bbc5436d1625e48f312eee8b70 (diff) | |
| download | eventlet-5b04426586d88aaf23dcb9cd86cd7bf53c974c1e.tar.gz | |
v0.25.0 releasev0.25.0
| -rw-r--r-- | NEWS | 19 | ||||
| -rw-r--r-- | eventlet/__init__.py | 2 |
2 files changed, 20 insertions, 1 deletions
@@ -1,3 +1,22 @@ +0.25.0 +====== +* wsgi: Only send 100 Continue response if no response has been sent yet; Thanks to Tim Burke +* wsgi: Return 400 on negative Content-Length request headers; Thanks to Tim Burke +* Make a GreenPile with no spawn()s an empty sequence; Thanks to nat-goodspeed +* wsgi: fix Input.readlines when dealing with chunked input; Thanks to Tim Burke +* wsgi: fix Input.readline on Python 3; Thanks to Tim Burke +* wsgi: Stop replacing invalid UTF-8 on py3; Thanks to Tim Burke +* ssl: Fix compatibility with Python 3.7 ssl.SSLSocket; Thanks to Junyi +* reimport submodule as well in patcher.inject; Thanks to Junyi +* use Python 2 compatible syntax for keyword-only args; Thanks to nat-goodspeed +* wsgi: Catch and swallow IOErrors during discard(); Thanks to Tim Burke +* Fix for Python 3.7; Thanks to Marcel Plch +* Fix race that could cause using epolls as default hub even when platform does not support it; Thanks to Sergey Shepelev +* wsgi: make Expect 100-continue field-value case-insensitive; Thanks to Julien Kasarherou +* greenthread: optimize _exit_funcs getattr/del dance; Thanks to Alex Kashirin +* New benchmarks runner; Thanks to Sergey Shepelev +* ssl: fix connect to use monotonic clock for timeout; Thanks to Sergey Shepelev + 0.24.1 ====== * greendns: don't contact nameservers if one entry is returned from hosts file; Thanks to Daniel Alvarez diff --git a/eventlet/__init__.py b/eventlet/__init__.py index e734385..1d33db0 100644 --- a/eventlet/__init__.py +++ b/eventlet/__init__.py @@ -1,7 +1,7 @@ import os -version_info = (0, 24, 1) +version_info = (0, 25, 0) __version__ = '.'.join(map(str, version_info)) # This is to make Debian packaging easier, it ignores import # errors of greenlet so that the packager can still at least |
