From e0bb4b35f262c88aade68ab38ae93ba23d5e80f4 Mon Sep 17 00:00:00 2001 From: "R. Tyler Croy" Date: Wed, 6 Oct 2010 11:11:53 -0700 Subject: [PATCH] Prepare for 0.9.5 release with an updated changelog Change-Id: Icc3a0e8d1dabd0f72dea886813a3ae5fd6aca534 --- AUTHORS.txt | 3 ++- NEWS.txt | 7 +++++++ setup.py | 2 +- src/spawning/__init__.py | 2 +- 4 files changed, 11 insertions(+), 3 deletions(-) diff --git a/AUTHORS.txt b/AUTHORS.txt index 50c3020..eb47356 100644 --- a/AUTHORS.txt +++ b/AUTHORS.txt @@ -5,4 +5,5 @@ Authors - Ludvig Ericson (contributor) - Elliot Murphy (contributor) - Steve 'Ashcrow' Milner (contributor) - - R. Tyler Ballance (current maintainer) + - Ryan Williams (contributor) + - R. Tyler Croy (current maintainer) diff --git a/NEWS.txt b/NEWS.txt index 37cf587..8a661dd 100644 --- a/NEWS.txt +++ b/NEWS.txt @@ -31,6 +31,13 @@ - Prevent leaking pipes when handling children processes +0.9.5: + - Fixed a number of issues with reloading of Spawning children + - Added /_sysinfo to provide information about the machine + - Added health page that listens on a different port from the controller, + providing HTML and JSON formatted information about children + - Introduced a basic logfile analyzer for processsing Spawning logs for + further information not provided by the health page diff --git a/setup.py b/setup.py index 4f3d6fd..5c294ca 100755 --- a/setup.py +++ b/setup.py @@ -47,7 +47,7 @@ setup( ).read(), author='Donovan Preston', author_email='dsposx@mac.com', - maintainer='R. Tyler Ballance', + maintainer='R. Tyler Croy', maintainer_email='tyler@monkeypox.org', include_package_data = True, packages = find_packages('src'), diff --git a/src/spawning/__init__.py b/src/spawning/__init__.py index 82f381c..e354d6f 100644 --- a/src/spawning/__init__.py +++ b/src/spawning/__init__.py @@ -23,7 +23,7 @@ """ """ -__version__ = '0.9.4' +__version__ = '0.9.5' setproctitle = lambda v: NotImplemented