diff --git a/NEWS b/NEWS index a2479bb..225f4c1 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,10 @@ +0.9.2 +===== + +* Bugfix for wsgi.py where it was improperly expecting the environ variable to be a constant when passed to the application. +* Tpool.py now passes its tests on Windows. +* Fixed minor performance issue in wsgi. + 0.9.1 ===== diff --git a/doc/real_index.html b/doc/real_index.html index ac757cb..c4b98a5 100644 --- a/doc/real_index.html +++ b/doc/real_index.html @@ -35,7 +35,7 @@ easy_install eventlet

Alternately, you can download the source tarball:

diff --git a/eventlet/__init__.py b/eventlet/__init__.py index 1e98450..a8e226c 100644 --- a/eventlet/__init__.py +++ b/eventlet/__init__.py @@ -1,2 +1,2 @@ -version_info = (0, 9, 1) +version_info = (0, 9, 2) __version__ = '%s.%s.%s' % version_info