bump version to v201903.0028

This commit is contained in:
Manuel Barkhau 2019-03-24 19:08:31 +01:00
parent 1309aacff7
commit 7760d7de72
6 changed files with 9 additions and 9 deletions

View file

@ -12,7 +12,7 @@ Project/Repo:
[![MIT License][license_img]][license_ref]
[![Supported Python Versions][pyversions_img]][pyversions_ref]
[![PyCalVer v201902.0027][version_img]][version_ref]
[![PyCalVer v201903.0028][version_img]][version_ref]
[![PyPI Releases][pypi_img]][pypi_ref]
[![PyPI Downloads][downloads_img]][downloads_ref]
@ -70,10 +70,10 @@ The fastest way to setup a project is to use `pycalver init`.
$ pip install pycalver
...
Installing collected packages: click pathlib2 typing toml six pycalver
Successfully installed pycalver-201902.27
Successfully installed pycalver-201903.28
$ pycalver --version
pycalver, version v201902.0027
pycalver, version v201903.0028
$ cd myproject
~/myproject$ pycalver init --dry
@ -992,7 +992,7 @@ artifact of a package, eg. a `.whl` file.
[downloads_img]: https://pepy.tech/badge/pycalver/month
[downloads_ref]: https://pepy.tech/project/pycalver
[version_img]: https://img.shields.io/static/v1.svg?label=PyCalVer&message=v201902.0027&color=blue
[version_img]: https://img.shields.io/static/v1.svg?label=PyCalVer&message=v201903.0028&color=blue
[version_ref]: https://pypi.org/project/pycalver/
[pypi_img]: https://img.shields.io/badge/PyPI-wheels-green.svg

View file

@ -13,7 +13,7 @@ PACKAGE_NAME="pycalver"
GIT_REPO_NAMESPACE="mbarkhau"
GIT_REPO_DOMAIN="gitlab.com"
PACKAGE_VERSION="v201902.0027"
PACKAGE_VERSION="v201903.0028"
DEFAULT_PYTHON_VERSION="python=3.6"
SUPPORTED_PYTHON_VERSIONS="python=2.7 python=3.5 python=3.6 python=3.7 pypy2.7 pypy3.5"

View file

@ -68,7 +68,7 @@ addopts = --doctest-modules
[pycalver]
current_version = v201902.0027
current_version = v201903.0028
version_pattern = "{pycalver}"
commit = True
tag = True

View file

@ -44,7 +44,7 @@ setuptools.setup(
author="Manuel Barkhau",
author_email="mbarkhau@gmail.com",
url="https://gitlab.com/mbarkhau/pycalver",
version="201902.27",
version="201903.28",
keywords="version versioning bumpversion calver",
description="CalVer for python libraries.",
long_description=long_description,

View file

@ -5,4 +5,4 @@
# SPDX-License-Identifier: MIT
"""PyCalVer: CalVer for Python Packages."""
__version__ = "v201902.0027"
__version__ = "v201903.0028"

View file

@ -67,7 +67,7 @@ def _validate_release_tag(release: str) -> None:
@click.group()
@click.version_option(version="v201902.0027")
@click.version_option(version="v201903.0028")
@click.help_option()
@click.option('-v', '--verbose', count=True, help="Control log level. -vv for debug level.")
def cli(verbose: int = 0) -> None: