From 7fad833dd16da6d823f333b3ec2228f659bf735f Mon Sep 17 00:00:00 2001 From: Theta-Dev Date: Mon, 7 Feb 2022 03:05:35 +0100 Subject: [PATCH 1/2] fix cfg argument not setting config path --- tsgrain_controller/__main__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tsgrain_controller/__main__.py b/tsgrain_controller/__main__.py index c8bced6..d48b21e 100644 --- a/tsgrain_controller/__main__.py +++ b/tsgrain_controller/__main__.py @@ -39,7 +39,7 @@ def run(): cfg_path = None if args.cfg: - cfg_path = args.cfg.name + cfg_path = args.cfg.resolve() app = application.Application(io_type, cfg_path=cfg_path) From 26193bee00bb67e5879c99d1f1d4909e30593537 Mon Sep 17 00:00:00 2001 From: Theta-Dev Date: Mon, 7 Feb 2022 03:06:22 +0100 Subject: [PATCH 2/2] =?UTF-8?q?Bump=20version:=200.1.1=20=E2=86=92=200.1.2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 2 +- setup.py | 2 +- tsgrain_controller/__init__.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index e88d1e4..4339ccc 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.1.1 +current_version = 0.1.2 commit = True tag = True diff --git a/setup.py b/setup.py index be1eacc..a03f6fc 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.1', + version='0.1.2', author='ThetaDev', description='TSGRain irrigation controller', long_description=README, diff --git a/tsgrain_controller/__init__.py b/tsgrain_controller/__init__.py index df9144c..10939f0 100644 --- a/tsgrain_controller/__init__.py +++ b/tsgrain_controller/__init__.py @@ -1 +1 @@ -__version__ = '0.1.1' +__version__ = '0.1.2'