mirror of
https://github.com/TECHNOFAB11/bumpver.git
synced 2025-12-12 06:20:08 +01:00
pycalver -> bumpver
This commit is contained in:
parent
2c01699b99
commit
bbf5bfa31c
35 changed files with 764 additions and 1235 deletions
20
setup.cfg
20
setup.cfg
|
|
@ -19,7 +19,7 @@ warn_redundant_casts = True
|
|||
|
||||
|
||||
[tool:isort]
|
||||
known_first_party = pycalver2
|
||||
known_first_party = bumpver
|
||||
known_third_party = click,pathlib2,lexid,pkg_resources
|
||||
force_single_line = True
|
||||
length_sort = True
|
||||
|
|
@ -88,26 +88,26 @@ exclude =
|
|||
addopts = --doctest-modules
|
||||
|
||||
|
||||
[calver]
|
||||
current_version = "v2020.1041-beta"
|
||||
version_pattern = "vYYYY.BUILD[-TAG]"
|
||||
[bumpver]
|
||||
current_version = "2020.1041-beta"
|
||||
version_pattern = "YYYY.BUILD[-TAG]"
|
||||
commit_message = "bump {old_version} -> {new_version}"
|
||||
commit = True
|
||||
tag = True
|
||||
push = True
|
||||
|
||||
[calver:file_patterns]
|
||||
[bumpver:file_patterns]
|
||||
bootstrapit.sh =
|
||||
PACKAGE_VERSION="{version}"
|
||||
setup.cfg =
|
||||
current_version = "{version}"
|
||||
setup.py =
|
||||
version="{pep440_version}"
|
||||
src/pycalver2/__init__.py =
|
||||
version="{pep440_version}",
|
||||
src/bumpver/__init__.py =
|
||||
__version__ = "{version}"
|
||||
src/pycalver2/cli.py =
|
||||
src/bumpver/cli.py =
|
||||
@click.version_option(version="{version}")
|
||||
src/pycalver2*/*.py =
|
||||
src/bumpver/*.py =
|
||||
Copyright (c) 2018-YYYY
|
||||
LICENSE =
|
||||
Copyright (c) 2018-YYYY
|
||||
|
|
@ -116,7 +116,7 @@ license.header =
|
|||
README.md =
|
||||
\[CalVer {version}\]
|
||||
img.shields.io/static/v1.svg?label=CalVer&message={version}&color=blue
|
||||
Successfully installed python-calver-{pep440_version}
|
||||
Successfully installed bumpver-{pep440_version}
|
||||
|
||||
|
||||
[tool:pylint]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue