Prepare for 0.8

This commit is contained in:
donovan
2008-10-13 10:36:30 -07:00
parent 91ffe1f127
commit 3a4994401c
2 changed files with 11 additions and 1 deletions

10
NEWS
View File

@@ -1,5 +1,15 @@
0.8.x
=====
Fix a CPU leak that would cause the poll hub to consume 100% CPU in certain conditions, for example the echoserver example. (Donovan Preston)
Fix the libev hub to match libev's callback signature. (Patch by grugq)
Add a backlog argument to api.tcp_listener (Patch by grugq)
0.7.x 0.7.x
===== =====
Fix a major memory leak when using the libevent or libev hubs. Timers were not being removed from the hub after they fired. (Thanks Agusto Becciu and the grugq). Also, make it possible to call wrap_socket_with_coroutine_socket without using the threadpool to make dns operations non-blocking (Thanks the grugq). Fix a major memory leak when using the libevent or libev hubs. Timers were not being removed from the hub after they fired. (Thanks Agusto Becciu and the grugq). Also, make it possible to call wrap_socket_with_coroutine_socket without using the threadpool to make dns operations non-blocking (Thanks the grugq).
It's now possible to use eventlet's SSL client to talk to eventlet's SSL server. (Thanks to Ryan Williams) It's now possible to use eventlet's SSL client to talk to eventlet's SSL server. (Thanks to Ryan Williams)

View File

@@ -6,7 +6,7 @@ from setuptools import find_packages, setup
setup( setup(
name='eventlet', name='eventlet',
version='0.8pre', version='0.8',
description='Coroutine-based networking library', description='Coroutine-based networking library',
author='Linden Lab', author='Linden Lab',
author_email='eventletdev@lists.secondlife.com', author_email='eventletdev@lists.secondlife.com',