Skip to content

Commit

Permalink
say hello to 0.4.4
Browse files Browse the repository at this point in the history
  • Loading branch information
benoitc committed Dec 20, 2012
1 parent b8b5a84 commit 89d0872
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 3 deletions.
1 change: 1 addition & 0 deletions MANIFEST.in
Expand Up @@ -3,6 +3,7 @@ include LICENSE
include README.rst
include THANKS
include UNLICENSE
include TODO.rst
recursive-include docs *
recursive-include examples *
recursive-include tests *
9 changes: 9 additions & 0 deletions docs/news.rst
@@ -1,6 +1,15 @@
CHANGES
=======

2012/12/20 - version 0.4.4
--------------------------

- improve Events dispatching
- add support for multiple channel in a process
- add ping handler for monitoring
- some fixes in the http api
- fix ``stop_processes`` function

2012/11/02 - version 0.4.3
--------------------------

Expand Down
2 changes: 1 addition & 1 deletion gaffer/__init__.py
Expand Up @@ -2,7 +2,7 @@
#
# This file is part of gaffer. See the NOTICE for more information.

version_info = (0, 4, 3)
version_info = (0, 4, 4)
__version__ = ".".join(map(str, version_info))

from gaffer.manager import Manager
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Expand Up @@ -39,12 +39,12 @@

DATA_FILES = [
('gaffer', ["LICENSE", "MANIFEST.in", "NOTICE", "README.rst",
"THANKS", "UNLICENSE"])
"THANKS", "UNLICENSE", "TODO.rst"])
]


setup(name='gaffer',
version="0.4.3",
version="0.4.4",
description = 'simple system process manager',
long_description = long_description,
classifiers = CLASSIFIERS,
Expand Down

0 comments on commit 89d0872

Please sign in to comment.