bump 2021.1111 -> 2021.1112

This commit is contained in:
Manuel Barkhau 2021-04-02 20:30:58 +00:00
parent 0f82c7eff7
commit 96a301f34b
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.1111"
__version__ = "2021.1112"

View file

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