From c58f43bd88582d15d1dc7a7eee749822e26d7c2f Mon Sep 17 00:00:00 2001 From: Sergey Shepelev Date: Thu, 3 Jul 2014 13:14:25 +0400 Subject: [PATCH] 0.15 release --- AUTHORS | 4 +++- NEWS | 14 ++++++++++++++ doc/real_index.html | 2 +- eventlet/__init__.py | 2 +- 4 files changed, 19 insertions(+), 3 deletions(-) diff --git a/AUTHORS b/AUTHORS index a5b7901..1b87c50 100644 --- a/AUTHORS +++ b/AUTHORS @@ -93,4 +93,6 @@ Thanks To * David Goetz, wsgi: Allow minimum_chunk_size to be overriden on a per request basis * Dmitry Orlov, websocket: accept Upgrade: websocket (lowercase) * Zhang Hua, profile: accumulate results between runs (Bitbucket #162) -* Astrum Kuo, python3 compatibility fixes +* Astrum Kuo, python3 compatibility fixes; greenthread.unlink() method +* Davanum Srinivas, Python3 compatibility fixes +* Dmitriy Kruglyak, PyPy 2.3 compatibility fix diff --git a/NEWS b/NEWS index 3296ce2..b0dc7fc 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,17 @@ +0.15 +==== +* Python3 compatibility -- **not ready yet**; Thanks to Astrum Kuo, Davanum Srinivas, Jakub Stasiak, Victor Sergeyev +* coros: remove Actor which was deprecated in 2010-01 +* saranwrap: remove saranwrap which was deprecated in 2010-02 +* PyPy compatibility fixes; Thanks to Dmitriy Kruglyak, Jakub Stasiak +* green.profile: accumulate results between runs; Thanks to Zhang Hua +* greenthread: add .unlink() method; Thanks to Astrum Kuo +* packaging: Generate universal wheels; Thanks to Jakub Stasiak +* queue: Make join not wait if there are no unfinished tasks; Thanks to Jakub Stasiak +* tpool: proxy __enter__, __exit__ fixes Bitbucket-158; Thanks to Eric Urban +* websockets: Add websockets13 support; handle lack of Upgrade header; Thanks to Edward George +* wsgi: capitalize_response_headers option + 0.14 ==== * wsgi: handle connection socket timeouts; Thanks to Paul Oppenheim diff --git a/doc/real_index.html b/doc/real_index.html index 35248d3..9a6d654 100644 --- a/doc/real_index.html +++ b/doc/real_index.html @@ -54,7 +54,7 @@ pip install eventlet

Alternately, you can download the source tarball:

diff --git a/eventlet/__init__.py b/eventlet/__init__.py index 9f3ebb2..3f6fc80 100644 --- a/eventlet/__init__.py +++ b/eventlet/__init__.py @@ -1,4 +1,4 @@ -version_info = (0, 15, 0, "dev") +version_info = (0, 15, 0) __version__ = ".".join(map(str, version_info)) try: