From 3a4994401c7e13b97143f5b3c87e76ef9ab7535f Mon Sep 17 00:00:00 2001 From: donovan Date: Mon, 13 Oct 2008 10:36:30 -0700 Subject: [PATCH] Prepare for 0.8 --- NEWS | 10 ++++++++++ setup.py | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/NEWS b/NEWS index 86efb0c..2eb2304 100644 --- a/NEWS +++ b/NEWS @@ -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 ===== + 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) diff --git a/setup.py b/setup.py index 27360e4..c3d48a7 100644 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ from setuptools import find_packages, setup setup( name='eventlet', - version='0.8pre', + version='0.8', description='Coroutine-based networking library', author='Linden Lab', author_email='eventletdev@lists.secondlife.com',