0.9.7 branding

This commit is contained in:
Ryan Williams
2010-03-09 17:53:34 -08:00
parent fcafbbf322
commit 3346ca3438
3 changed files with 11 additions and 2 deletions

9
NEWS
View File

@@ -1,3 +1,12 @@
0.9.7
=====
* GreenPipe is now a context manager
* tpool.Proxy supports iterators properly
* bug fixes in eventlet.green.os
* 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: