diff options
| author | Sergey Shepelev <temotor@gmail.com> | 2020-07-31 00:48:15 +0300 |
|---|---|---|
| committer | Sergey Shepelev <temotor@gmail.com> | 2020-07-31 00:48:15 +0300 |
| commit | cc8dc5c296edacd9ff12b058b31a7370727653d3 (patch) | |
| tree | 51e1db0d349888ea0d4db6af666a2452dee92565 | |
| parent | 42361430ca156620f840b5c8fe1e7dc7cffea66e (diff) | |
| download | eventlet-cc8dc5c296edacd9ff12b058b31a7370727653d3.tar.gz | |
v0.26.1 releasev0.26.1
| -rw-r--r-- | NEWS | 4 | ||||
| -rw-r--r-- | eventlet/__init__.py | 2 |
2 files changed, 5 insertions, 1 deletions
@@ -1,3 +1,7 @@ +0.26.1 +====== +* pin dnspython <2.0.0 https://github.com/eventlet/eventlet/issues/619 + 0.26.0 ====== * Fix compatibility with SSLContext usage >= Python 3.7 diff --git a/eventlet/__init__.py b/eventlet/__init__.py index bec1c9d..2990a57 100644 --- a/eventlet/__init__.py +++ b/eventlet/__init__.py @@ -1,7 +1,7 @@ import os -version_info = (0, 26, 0) +version_info = (0, 26, 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 |
