Compare commits

...

2 commits

Author SHA1 Message Date
26193bee00 Bump version: 0.1.1 → 0.1.2 2022-02-07 03:06:22 +01:00
7fad833dd1 fix cfg argument not setting config path 2022-02-07 03:05:35 +01:00
4 changed files with 4 additions and 4 deletions

View file

@ -1,5 +1,5 @@
[bumpversion] [bumpversion]
current_version = 0.1.1 current_version = 0.1.2
commit = True commit = True
tag = True tag = True

View file

@ -6,7 +6,7 @@ with open('README.rst') as f:
setuptools.setup( setuptools.setup(
name='TSGRain Controller', name='TSGRain Controller',
version='0.1.1', version='0.1.2',
author='ThetaDev', author='ThetaDev',
description='TSGRain irrigation controller', description='TSGRain irrigation controller',
long_description=README, long_description=README,

View file

@ -1 +1 @@
__version__ = '0.1.1' __version__ = '0.1.2'

View file

@ -39,7 +39,7 @@ def run():
cfg_path = None cfg_path = None
if args.cfg: if args.cfg:
cfg_path = args.cfg.name cfg_path = args.cfg.resolve()
app = application.Application(io_type, cfg_path=cfg_path) app = application.Application(io_type, cfg_path=cfg_path)