bump 2021.1112 -> 2021.1113

This commit is contained in:
Manuel Barkhau 2021-05-13 19:33:12 +00:00
parent c69839f448
commit 9379984b93
6 changed files with 8 additions and 8 deletions

View file

@ -5,4 +5,4 @@
# SPDX-License-Identifier: MIT
"""BumpVer: A CLI program for versioning."""
__version__ = "2021.1112"
__version__ = "2021.1113"

View file

@ -247,7 +247,7 @@ def version_options(function: typ.Callable) -> typ.Callable:
@click.group()
@click.version_option(version="2021.1112")
@click.version_option(version="2021.1113")
@click.help_option()
@verbose_option
def cli(verbose: int = 0) -> None: