Merge pool-with-create-1

This commit is contained in:
Ryan Williams
2010-03-12 16:07:46 -08:00
3 changed files with 12 additions and 2 deletions

10
NEWS
View File

@@ -1,3 +1,13 @@
0.9.7
=====
* GreenPipe is now a context manager (thanks, quad)
* tpool.Proxy supports iterators properly
* bug fixes in eventlet.green.os (thanks, Benoit)
* much code cleanup from Tavis
* a few more example apps
* multitudinous improvements in Py3k compatibility from amajorek
0.9.6
=====
* new EVENTLET_HUB environment variable allows you to select a hub without code

View File

@@ -41,7 +41,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.6.tar.gz">eventlet-0.9.6.tar.gz</a></li>
<li><a href="http://pypi.python.org/packages/source/e/eventlet/eventlet-0.9.7.tar.gz">eventlet-0.9.7.tar.gz</a></li>
</ul>
</p>

View File

@@ -1,4 +1,4 @@
version_info = (0, 9, 7, 'dev1')
version_info = (0, 9, 7)
__version__ = ".".join(map(str, version_info))
try: