diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 614df35..ee8f37d 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.0.7 +current_version = 0.0.8 commit = True tag = True tag_name = {new_version} diff --git a/multicommand.py b/multicommand.py index 236e99d..f827a93 100644 --- a/multicommand.py +++ b/multicommand.py @@ -14,7 +14,7 @@ from typing import Tuple -__version__ = "0.0.7" +__version__ = "0.0.8" def create_parser(command_pkg: ModuleType) -> ArgumentParser: diff --git a/pyproject.toml b/pyproject.toml index 7b9fd8d..756b9a8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "multicommand" -version = "0.0.7" +version = "0.0.8" description = "Simple subcommand CLIs with argparse" authors = ["Andrew Ross "] license = "MIT"