bump 2020.1106 -> 2020.1107

This commit is contained in:
Manuel Barkhau 2020-11-24 20:54:23 +00:00
parent 52cc7133d0
commit bce44fd240
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__ = "2020.1106"
__version__ = "2020.1107"

View file

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