bump v202010.1040-beta -> v202010.1041-beta

This commit is contained in:
Manuel Barkhau 2020-10-05 19:43:36 +00:00
parent 173593c8f7
commit bcf3d88f47
6 changed files with 8 additions and 8 deletions

View file

@ -19,7 +19,7 @@ Project/Repo:
[![MIT License][img_license]][url_license] [![MIT License][img_license]][url_license]
[![Supported Python Versions][img_pyversions]][url_pyversions] [![Supported Python Versions][img_pyversions]][url_pyversions]
[![PyCalVer v202010.1040-beta][img_version]][url_version] [![PyCalVer v202010.1041-beta][img_version]][url_version]
[![PyPI Releases][img_pypi]][url_pypi] [![PyPI Releases][img_pypi]][url_pypi]
[![PyPI Downloads][img_downloads]][url_downloads] [![PyPI Downloads][img_downloads]][url_downloads]
@ -59,7 +59,7 @@ Code Quality/CI:
[img_downloads]: https://pepy.tech/badge/pycalver/month [img_downloads]: https://pepy.tech/badge/pycalver/month
[url_downloads]: https://pepy.tech/project/pycalver [url_downloads]: https://pepy.tech/project/pycalver
[img_version]: https://img.shields.io/static/v1.svg?label=PyCalVer&message=v202010.1040-beta&color=blue [img_version]: https://img.shields.io/static/v1.svg?label=PyCalVer&message=v202010.1041-beta&color=blue
[url_version]: https://pypi.org/project/pycalver/ [url_version]: https://pypi.org/project/pycalver/
[img_pypi]: https://img.shields.io/badge/PyPI-wheels-green.svg [img_pypi]: https://img.shields.io/badge/PyPI-wheels-green.svg
@ -226,7 +226,7 @@ The fastest way to setup a project is to use `pycalver init`.
$ pip install pycalver $ pip install pycalver
... ...
Installing collected packages: click pathlib2 typing toml pycalver Installing collected packages: click pathlib2 typing toml pycalver
Successfully installed pycalver-202010.1040b0 Successfully installed pycalver-202010.1041b0
$ cd myproject $ cd myproject
~/myproject/ ~/myproject/

View file

@ -13,7 +13,7 @@ PACKAGE_NAME="pycalver"
GIT_REPO_NAMESPACE="mbarkhau" GIT_REPO_NAMESPACE="mbarkhau"
GIT_REPO_DOMAIN="github.com" GIT_REPO_DOMAIN="github.com"
PACKAGE_VERSION="v202010.1040-beta" PACKAGE_VERSION="v202010.1041-beta"
DEFAULT_PYTHON_VERSION="python=3.8" DEFAULT_PYTHON_VERSION="python=3.8"
SUPPORTED_PYTHON_VERSIONS="python=2.7 python=3.6 python=3.8 pypy2.7 pypy3.5" SUPPORTED_PYTHON_VERSIONS="python=2.7 python=3.6 python=3.8 pypy2.7 pypy3.5"

View file

@ -89,7 +89,7 @@ addopts = --doctest-modules
[pycalver] [pycalver]
current_version = "v202010.1040-beta" current_version = "v202010.1041-beta"
version_pattern = "vYYYY0M.BUILD[-RELEASE]" version_pattern = "vYYYY0M.BUILD[-RELEASE]"
commit_message = "bump {old_version} -> {new_version}" commit_message = "bump {old_version} -> {new_version}"
commit = True commit = True

View file

@ -63,7 +63,7 @@ setuptools.setup(
author="Manuel Barkhau", author="Manuel Barkhau",
author_email="mbarkhau@gmail.com", author_email="mbarkhau@gmail.com",
url="https://github.com/mbarkhau/pycalver", url="https://github.com/mbarkhau/pycalver",
version="202010.1040b0", version="202010.1041b0",
keywords="version versioning calver semver bumpversion pep440", keywords="version versioning calver semver bumpversion pep440",
description="CalVer for python libraries.", description="CalVer for python libraries.",
long_description=long_description, long_description=long_description,

View file

@ -5,4 +5,4 @@
# SPDX-License-Identifier: MIT # SPDX-License-Identifier: MIT
"""PyCalVer: CalVer for Python Packages.""" """PyCalVer: CalVer for Python Packages."""
__version__ = "v202010.1040-beta" __version__ = "v202010.1041-beta"

View file

@ -101,7 +101,7 @@ def _validate_release_tag(tag: typ.Optional[str]) -> None:
@click.group() @click.group()
@click.version_option(version="v202010.1040-beta") @click.version_option(version="v202010.1041-beta")
@click.help_option() @click.help_option()
@click.option('-v', '--verbose', count=True, help="Control log level. -vv for debug level.") @click.option('-v', '--verbose', count=True, help="Control log level. -vv for debug level.")
def cli(verbose: int = 0) -> None: def cli(verbose: int = 0) -> None: