Create the news entries for 0.9.4

Change-Id: I381edec203516e89d3dfd34270b19f81c2c9410d
This commit is contained in:
R. Tyler Ballance 2010-08-23 13:46:59 -07:00
parent 3a8604a839
commit 2e606c9b8b
2 changed files with 23 additions and 1 deletions

View File

@ -16,6 +16,24 @@
expires
- SIGHUP to the parent will cause it to cycle children without itself dying
0.9.4:
- Script for spawning renamed from "spawn" to "spawning" to avoid confusion
- Use O_APPEND when opening files when daemonizing
- Debian/Ubuntu init.d scripts using start-stop-daemon
- spawning.util module added to house methods that don't belong elsewhere
- Update Spawning to use newer Eventlet API calls
- Properly handle errors when calling `setproctitle`
- Allow optional `eventlet.backdoor` bound to localhost
- Operate more cleanly with Eventlet's websockets support with changes to
eventlet.tpool integration
- Avoid passing certain objects through `eventlet.tpool.Proxy` when using
threads for a performance gain
- Prevent leaking pipes when handling children processes
0.8
====
@ -74,6 +92,10 @@ If an i/o child process dies with an exit code other than 0, the controller deci
- Minor release to fix the explicit manifest and OpenRC init script added in the last release. (lericson)
- When running under 2.6 we no longer produce a deprecation warning about the removal of the sets module. (fzzzy)
0.7
====

View File

@ -23,7 +23,7 @@
"""
"""
__version__ = '0.9.3rc4'
__version__ = '0.9.4'
setproctitle = lambda v: NotImplemented