diff options
| author | Sergey Shepelev <temotor@gmail.com> | 2014-09-01 04:22:37 +0400 |
|---|---|---|
| committer | Sergey Shepelev <temotor@gmail.com> | 2014-09-01 04:22:37 +0400 |
| commit | b9184f8dcc6e123f121401a8088573105acbf8a2 (patch) | |
| tree | aa5ca9bb0457e2453b684825f229098639c0dfad | |
| parent | f574c4feb153ad925ebe0dcf4a2020e5b6abc56d (diff) | |
| download | eventlet-b9184f8dcc6e123f121401a8088573105acbf8a2.tar.gz | |
v0.15.2 release
| -rw-r--r-- | AUTHORS | 2 | ||||
| -rw-r--r-- | NEWS | 4 | ||||
| -rw-r--r-- | doc/real_index.html | 2 | ||||
| -rw-r--r-- | eventlet/__init__.py | 2 |
4 files changed, 8 insertions, 2 deletions
@@ -97,3 +97,5 @@ Thanks To * Davanum Srinivas, Python3 compatibility fixes * Dmitriy Kruglyak, PyPy 2.3 compatibility fix * Jan Grant, Michael Kerrin, second simultaneous read (Github #94) +* Simon Jagoe, Python3 octal literal fix +* Tushar Gohad, wsgi: Support optional headers w/ "100 Continue" responses @@ -1,3 +1,7 @@ +0.15.2 +====== +greenio: fixed memory leak, introduced in 0.15.1; Thanks to Michael Kerrin, Tushar Gohad + 0.15.1 ====== greenio: Fix second simultaneous read (parallel paramiko issue); Thanks to Jan Grant, Michael Kerrin diff --git a/doc/real_index.html b/doc/real_index.html index f82aa81..03544ac 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 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.15.1.tar.gz">eventlet-0.15.1.tar.gz</a></li> + <a class="reference external" href="https://pypi.python.org/packages/source/e/eventlet/eventlet-0.15.2.tar.gz">eventlet-0.15.2.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 d9db8c2..e8bd5c1 100644 --- a/eventlet/__init__.py +++ b/eventlet/__init__.py @@ -1,4 +1,4 @@ -version_info = (0, 16, 0, 'dev') +version_info = (0, 15, 2) __version__ = '.'.join(map(str, version_info)) try: |
