# HG changeset patch # User Thierry Florac # Date 1444296726 -7200 # Node ID a94173c4f60fd7feedd81402c35057986b440980 # Parent b1a1ccc1fa2649a388ea858ca1141e3d6e773403 Version 0.1.2 diff -r b1a1ccc1fa26 -r a94173c4f60f buildout.cfg --- a/buildout.cfg Thu Oct 08 11:31:03 2015 +0200 +++ b/buildout.cfg Thu Oct 08 11:32:06 2015 +0200 @@ -70,4 +70,4 @@ eggs = pyams_scheduler [test] [versions] -pyams_scheduler = 0.1.1 +pyams_scheduler = 0.1.2 diff -r b1a1ccc1fa26 -r a94173c4f60f docs/HISTORY.txt --- a/docs/HISTORY.txt Thu Oct 08 11:31:03 2015 +0200 +++ b/docs/HISTORY.txt Thu Oct 08 11:32:06 2015 +0200 @@ -0,0 +1,16 @@ +History +======= + +0.1.2 +----- + - check upgrade mode on application startup before starting scheduler process + - add status code to scheduler messages handler + - use 'pyams_zmq' package utility functions for sockets to handle connection timeout + +0.1.1 +----- + - changed ØMQ error handling + +0.1.0 +----- + - initial release diff -r b1a1ccc1fa26 -r a94173c4f60f setup.py --- a/setup.py Thu Oct 08 11:31:03 2015 +0200 +++ b/setup.py Thu Oct 08 11:32:06 2015 +0200 @@ -22,7 +22,7 @@ README = os.path.join(DOCS, 'README.txt') HISTORY = os.path.join(DOCS, 'HISTORY.txt') -version = '0.1.1' +version = '0.1.2' long_description = open(README).read() + '\n\n' + open(HISTORY).read() tests_require = [] diff -r b1a1ccc1fa26 -r a94173c4f60f src/pyams_scheduler.egg-info/PKG-INFO --- a/src/pyams_scheduler.egg-info/PKG-INFO Thu Oct 08 11:31:03 2015 +0200 +++ b/src/pyams_scheduler.egg-info/PKG-INFO Thu Oct 08 11:32:06 2015 +0200 @@ -1,6 +1,6 @@ Metadata-Version: 1.1 Name: pyams-scheduler -Version: 0.1.1 +Version: 0.1.2 Summary: PyAMS tasks scheduler Home-page: http://hg.ztfy.org/pyams/pyams_scheduler Author: Thierry Florac @@ -58,6 +58,22 @@ management and activate and schedule the task, as well as settings specific to the given task. + History + ======= + + 0.1.2 + ----- + - check upgrade mode on application startup before starting scheduler process + - add status code to scheduler messages handler + - use 'pyams_zmq' package utility functions for sockets to handle connection timeout + + 0.1.1 + ----- + - changed ØMQ error handling + + 0.1.0 + ----- + - initial release Keywords: Pyramid PyAMS scheduler Platform: UNKNOWN