0.9.2 branding

This commit is contained in:
Ryan Williams
2009-12-15 12:30:23 -08:00
parent b7185e89e4
commit 3d3c38403b
3 changed files with 9 additions and 2 deletions

7
NEWS
View File

@@ -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
=====

View File

@@ -35,7 +35,7 @@ easy_install eventlet
<p>Alternately, you can download the source tarball:
<ul>
<li><a href="http://pypi.python.org/packages/source/e/eventlet/eventlet-0.9.1.tar.gz">eventlet-0.9.1.tar.gz</a></li>
<li><a href="http://pypi.python.org/packages/source/e/eventlet/eventlet-0.9.2.tar.gz">eventlet-0.9.2.tar.gz</a></li>
</ul>
</p>

View File

@@ -1,2 +1,2 @@
version_info = (0, 9, 1)
version_info = (0, 9, 2)
__version__ = '%s.%s.%s' % version_info