bump 2020.1101-beta -> 2020.1102-beta

This commit is contained in:
Manuel Barkhau 2020-10-18 21:11:35 +00:00
parent fbf9b2cf93
commit 82795db06c
6 changed files with 8 additions and 8 deletions

View file

@ -22,7 +22,7 @@ Project/Repo:
[![MIT License][img_license]][url_license]
[![Supported Python Versions][img_pyversions]][url_pyversions]
[![CalVer 2020.1101-beta][img_version]][url_version]
[![CalVer 2020.1102-beta][img_version]][url_version]
[![PyPI Releases][img_pypi]][url_pypi]
[![PyPI Downloads][img_downloads]][url_downloads]
@ -61,7 +61,7 @@ Code Quality/CI:
[img_downloads]: https://pepy.tech/badge/bumpver/month
[url_downloads]: https://pepy.tech/project/bumpver
[img_version]: https://img.shields.io/static/v1.svg?label=CalVer&message=2020.1101-beta&color=blue
[img_version]: https://img.shields.io/static/v1.svg?label=CalVer&message=2020.1102-beta&color=blue
[url_version]: https://pypi.org/project/bumpver/
[img_pypi]: https://img.shields.io/badge/PyPI-wheels-green.svg
@ -713,7 +713,7 @@ The create an initial configuration for project with `bumpver init`.
$ pip install bumpver
...
Installing collected packages: click toml lexid bumpver
Successfully installed bumpver-2020.1101b0
Successfully installed bumpver-2020.1102b0
$ cd myproject
~/myproject/

View file

@ -13,7 +13,7 @@ PACKAGE_NAME="bumpver"
GIT_REPO_NAMESPACE="mbarkhau"
GIT_REPO_DOMAIN="github.com"
PACKAGE_VERSION="2020.1101-beta"
PACKAGE_VERSION="2020.1102-beta"
DEFAULT_PYTHON_VERSION="python=3.8"
SUPPORTED_PYTHON_VERSIONS="python=2.7 python=3.6 pypy2.7 pypy3.5 python=3.8"

View file

@ -89,7 +89,7 @@ addopts = --doctest-modules
[bumpver]
current_version = "2020.1101-beta"
current_version = "2020.1102-beta"
version_pattern = "YYYY.BUILD[-TAG]"
commit_message = "bump {old_version} -> {new_version}"
commit = True

View file

@ -63,7 +63,7 @@ setuptools.setup(
author="Manuel Barkhau",
author_email="mbarkhau@gmail.com",
url="https://github.com/mbarkhau/bumpver",
version="2020.1101b0",
version="2020.1102b0",
keywords="version bumpver calver semver versioning bumpversion pep440",
description="Bump version numbers in project files.",
long_description=long_description,

View file

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

View file

@ -164,7 +164,7 @@ def _get_normalized_pattern(raw_pattern: str, version_pattern: typ.Optional[str]
@click.group()
@click.version_option(version="2020.1101-beta")
@click.version_option(version="2020.1102-beta")
@click.help_option()
@click.option('-v', '--verbose', count=True, help="Control log level. -vv for debug level.")
def cli(verbose: int = 0) -> None: