bump 2022.1115 -> 2022.1116

This commit is contained in:
Manuel Barkhau 2022-03-11 12:43:28 +00:00
parent 04ba386802
commit 25b6d39c03
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__ = "2022.1115"
__version__ = "2022.1116"

View file

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