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