diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 4339ccc..d9286d4 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.1.2 +current_version = 0.1.3 commit = True tag = True diff --git a/setup.py b/setup.py index a03f6fc..3db03fc 100644 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ with open('README.rst') as f: setuptools.setup( name='TSGRain Controller', - version='0.1.2', + version='0.1.3', author='ThetaDev', description='TSGRain irrigation controller', long_description=README, diff --git a/tsgrain_controller/__init__.py b/tsgrain_controller/__init__.py index 10939f0..8ce9b36 100644 --- a/tsgrain_controller/__init__.py +++ b/tsgrain_controller/__init__.py @@ -1 +1 @@ -__version__ = '0.1.2' +__version__ = '0.1.3' diff --git a/tsgrain_controller/__main__.py b/tsgrain_controller/__main__.py index d48b21e..778f082 100644 --- a/tsgrain_controller/__main__.py +++ b/tsgrain_controller/__main__.py @@ -53,7 +53,7 @@ def run(): os.kill(os.getpid(), signal.SIGKILL) signal.signal(signal.SIGINT, _signal_handler) - signal.signal(signal.SIGHUP, _signal_handler) + signal.signal(signal.SIGTERM, _signal_handler) sys.excepthook = _except_handler app.start()