From 3a3f8acd5b5d61289cf0f8feeaec51379aeb8e33 Mon Sep 17 00:00:00 2001 From: Andrew Ross Date: Fri, 9 Apr 2021 01:23:15 -0400 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.0.7=20=E2=86=92=200.0.8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 2 +- multicommand.py | 2 +- pyproject.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) 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"