0.10 release (branding)

This commit is contained in:
Sergey Shepelev
2012-12-26 19:54:32 +04:00
parent db98ab2ed3
commit b0969fc156
3 changed files with 37 additions and 20 deletions

17
NEWS
View File

@@ -1,3 +1,20 @@
0.10
======
* greenio: Fix relative seek() (thanks to AlanP)
* db_pool: Fix pool.put() TypeError with min_size > 1 (thanks to Jessica Qi)
* greenthread: Prevent infinite recursion with linking to current greenthread (thanks to Edward George)
* zmq: getsockopt(EVENTS) wakes correct threads (thanks to Eric Windisch)
* wsgi: Handle client disconnect while sending response (thanks to Clay Gerrard)
* hubs: Ensure that new hub greenlet is parent of old one (thanks to Edward George)
* os: Fix waitpid() returning (0, 0) (thanks to Vishvananda Ishaya)
* tpool: Add set_num_threads() method to set the number of tpool threads (thanks to David Ibarra)
* threading, zmq: Fix Python 2.5 support (thanks to Floris Bruynooghe)
* tests: tox configuration for all supported Python versions (thanks to Floris Bruynooghe)
* tests: Fix zmq._QueueLock test in Python2.6
* tests: Fix patcher_test on Darwin (/bin/true issue) (thanks to Edward George)
* tests: Skip SSL tests when not available (thanks to Floris Bruynooghe)
* greenio: Remove deprecated GreenPipe.xreadlines() method, was broken anyway
0.9.17 0.9.17
====== ======
* ZeroMQ support calling send and recv from multiple greenthreads (thanks to Geoff Salmon) * ZeroMQ support calling send and recv from multiple greenthreads (thanks to Geoff Salmon)

View File

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

View File

@@ -1,4 +1,4 @@
version_info = (0, 9, 18, "dev") version_info = (0, 10, 0)
__version__ = ".".join(map(str, version_info)) __version__ = ".".join(map(str, version_info))
try: try: