diff --git a/setup.cfg b/setup.cfg index e5dc06b..e09e675 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.0.5 +current_version = 1.0.6 commit = True tag = True @@ -24,14 +24,14 @@ indent-string = ' ' max-line-length = 80 [pylint.design] -max-args=100 -max-attributes=100 -max-bool-expr=100 -max-branches=100 -max-locals=100 -max-public-methods=100 -max-returns=100 -max-statements=100 +max-args = 100 +max-attributes = 100 +max-bool-expr = 100 +max-branches = 100 +max-locals = 100 +max-public-methods = 100 +max-returns = 100 +max-statements = 100 [pylint.master] -init-hook = 'import sys; sys.path.append(".")' \ No newline at end of file +init-hook = 'import sys; sys.path.append(".")' diff --git a/smugcli/version.py b/smugcli/version.py index ab875ff..4b56bc7 100644 --- a/smugcli/version.py +++ b/smugcli/version.py @@ -1,3 +1,3 @@ """SmugCLI version number.""" -__version__ = '1.0.5' +__version__ = '1.0.6'