From 03e0e63801d92d7b800a8594b7c0fbc37687ec8d Mon Sep 17 00:00:00 2001 From: Sergey Shepelev Date: Fri, 3 Aug 2012 01:42:50 +0400 Subject: [PATCH] 0.9.17 branding --- NEWS | 15 +++++++++++++++ doc/real_index.html | 2 +- eventlet/__init__.py | 2 +- 3 files changed, 17 insertions(+), 2 deletions(-) diff --git a/NEWS b/NEWS index a2df6c0..7c12be8 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,18 @@ +0.9.17 +====== +* ZeroMQ support calling send and recv from multiple greenthreads (thanks to Geoff Salmon) +* SSL: unwrap() sends data, and so it needs trampolining (#104 thanks to Brandon Rhodes) +* hubs.epolls: Fix imports for exception handler (#123 thanks to Johannes Erdfelt) +* db_pool: Fix .clear() when min_size > 0 +* db_pool: Add MySQL's insert_id() method (thanks to Peter Scott) +* db_pool: Close connections after timeout, fix get-after-close race condition with using TpooledConnectionPool (thanks to Peter Scott) +* threading monkey patch fixes (#115 thanks to Johannes Erdfelt) +* pools: Better accounting of current_size in pools.Pool (#91 thanks to Brett Hoerner) +* wsgi: environ['RAW_PATH_INFO'] with request path as received from client (thanks to dweimer) +* wsgi: log_output flag (thanks to Juan Manuel Garcia) +* wsgi: Limit HTTP header size (thanks to Gregory Holt) +* wsgi: Configurable maximum URL length (thanks to Tomas Sedovic) + 0.9.16 ====== * SO_REUSEADDR now correctly set. diff --git a/doc/real_index.html b/doc/real_index.html index b54560e..1dbc2b3 100644 --- a/doc/real_index.html +++ b/doc/real_index.html @@ -41,7 +41,7 @@ easy_install eventlet

Alternately, you can download the source tarball from PyPi:

diff --git a/eventlet/__init__.py b/eventlet/__init__.py index 2e47faf..f4e8b96 100644 --- a/eventlet/__init__.py +++ b/eventlet/__init__.py @@ -1,4 +1,4 @@ -version_info = (0, 9, 17, "dev") +version_info = (0, 9, 17) __version__ = ".".join(map(str, version_info)) try: