diff options
| author | Sergey Shepelev <temotor@gmail.com> | 2018-02-17 21:07:43 +0300 |
|---|---|---|
| committer | Sergey Shepelev <temotor@gmail.com> | 2018-02-17 21:07:43 +0300 |
| commit | 3bc07e427ed23276ded648e81fe61a144bba9176 (patch) | |
| tree | 2b683483b79720b040b855df1ab7454821c85910 | |
| parent | 257058bbdd43e4288177ea669023fe357c98d9ba (diff) | |
| download | eventlet-3bc07e427ed23276ded648e81fe61a144bba9176.tar.gz | |
v0.22.1 releasev0.22.1
| -rw-r--r-- | AUTHORS | 1 | ||||
| -rw-r--r-- | NEWS | 7 | ||||
| -rw-r--r-- | doc/real_index.html | 2 | ||||
| -rw-r--r-- | eventlet/__init__.py | 2 |
4 files changed, 10 insertions, 2 deletions
@@ -164,3 +164,4 @@ Thanks To * Quan Tian * orishoshan * Matt Bennett +* Ralf Haferkamp @@ -1,3 +1,10 @@ +0.22.1 +====== +* Fixed issue installing excess enum34 on Python3.4+ (rebuild with updated setuptools) +* event: Event.wait() timeout=None argument to be compatible with upstream CPython +* greendns: Treat /etc/hosts entries case-insensitive; Thanks to Ralf Haferkamp + + 0.22.0 ====== * convenience: (SO_REUSEPORT) socket.error is not OSError on Python 2; Thanks to JacoFourie@github diff --git a/doc/real_index.html b/doc/real_index.html index de48aec..918dc19 100644 --- a/doc/real_index.html +++ b/doc/real_index.html @@ -54,7 +54,7 @@ pip install eventlet <p>Alternately, you can download the source archive:</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.22.0.tar.gz">eventlet-0.22.0.tar.gz</a></li> + <a class="reference external" href="https://pypi.python.org/packages/source/e/eventlet/eventlet-0.22.1.tar.gz">eventlet-0.22.1.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> diff --git a/eventlet/__init__.py b/eventlet/__init__.py index bc52cb7..9d0bb5c 100644 --- a/eventlet/__init__.py +++ b/eventlet/__init__.py @@ -1,7 +1,7 @@ import os -version_info = (0, 22, 0) +version_info = (0, 22, 1) __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 |
