0.9.4 branding

This commit is contained in:
Ryan Williams
2010-01-28 18:06:05 -08:00
parent 7e7181f768
commit 0d286af59f
3 changed files with 10 additions and 2 deletions

8
NEWS
View File

@@ -1,3 +1,11 @@
0.9.4
=====
* Deprecated coros.Queue and coros.Channel (use queue.Queue instead)
* Added putting and getting methods to queue.Queue.
* Added eventlet.green.Queue which is a greened clone of stdlib Queue, along with stdlib tests.
* Changed __init__.py so that the version number is readable even if greenlet's not installed.
* Bugfixes in wsgi, greenpool
0.9.3
=====

View File

@@ -33,7 +33,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.3.tar.gz">eventlet-0.9.3.tar.gz</a></li>
<li><a href="http://pypi.python.org/packages/source/e/eventlet/eventlet-0.9.4.tar.gz">eventlet-0.9.4.tar.gz</a></li>
</ul>
</p>

View File

@@ -1,4 +1,4 @@
version_info = (0, 9, 3)
version_info = (0, 9, 4)
__version__ = '%s.%s.%s' % version_info
try: