From 328ef5c10a8b1f810b4bf3a28d1e5b4e8fdab3aa Mon Sep 17 00:00:00 2001 From: Manuel Barkhau Date: Fri, 11 Feb 2022 22:44:31 +0000 Subject: [PATCH] bump 2021.1114 -> 2022.1115 --- LICENSE | 2 +- README.md | 6 +++--- bootstrapit.sh | 2 +- license.header | 2 +- setup.cfg | 2 +- setup.py | 2 +- src/bumpver/__init__.py | 4 ++-- src/bumpver/__main__.py | 2 +- src/bumpver/cli.py | 4 ++-- src/bumpver/config.py | 2 +- src/bumpver/parse.py | 2 +- src/bumpver/patterns.py | 2 +- src/bumpver/pysix.py | 2 +- src/bumpver/regexfmt.py | 2 +- src/bumpver/rewrite.py | 2 +- src/bumpver/utils.py | 2 +- src/bumpver/v1patterns.py | 2 +- src/bumpver/v1rewrite.py | 2 +- src/bumpver/v1version.py | 2 +- src/bumpver/v2patterns.py | 2 +- src/bumpver/v2rewrite.py | 2 +- src/bumpver/v2version.py | 2 +- src/bumpver/vcs.py | 2 +- src/bumpver/version.py | 2 +- 24 files changed, 28 insertions(+), 28 deletions(-) diff --git a/LICENSE b/LICENSE index a3f8f80..15947e4 100644 --- a/LICENSE +++ b/LICENSE @@ -1,4 +1,4 @@ -MIT License Copyright (c) 2018-2021 Manuel Barkhau (mbarkhau@gmail.com) +MIT License Copyright (c) 2018-2022 Manuel Barkhau (mbarkhau@gmail.com) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/README.md b/README.md index ef5403c..67ef8aa 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,7 @@ Project/Repo: [![MIT License][img_license]][url_license] [![Supported Python Versions][img_pyversions]][url_pyversions] -[![CalVer 2021.1114][img_version]][url_version] +[![CalVer 2022.1115][img_version]][url_version] [![PyPI Releases][img_pypi]][url_pypi] [![PyPI Downloads][img_downloads]][url_downloads] @@ -56,7 +56,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=2021.1114&color=blue +[img_version]: https://img.shields.io/static/v1.svg?label=CalVer&message=2022.1115&color=blue [url_version]: https://pypi.org/project/bumpver/ [img_pypi]: https://img.shields.io/badge/PyPI-wheels-green.svg @@ -765,7 +765,7 @@ The create an initial configuration for project with `bumpver init`. $ pip install bumpver ... Installing collected packages: click toml lexid bumpver -Successfully installed bumpver-2021.1114 +Successfully installed bumpver-2022.1115 $ cd myproject ~/myproject/ diff --git a/bootstrapit.sh b/bootstrapit.sh index 9fa39bd..fca4f6a 100644 --- a/bootstrapit.sh +++ b/bootstrapit.sh @@ -13,7 +13,7 @@ PACKAGE_NAME="bumpver" GIT_REPO_NAMESPACE="mbarkhau" GIT_REPO_DOMAIN="github.com" -PACKAGE_VERSION="2021.1114" +PACKAGE_VERSION="2022.1115" DEFAULT_PYTHON_VERSION="python=3.8" SUPPORTED_PYTHON_VERSIONS="python=2.7 python=3.6 pypy2.7 pypy3.5 python=3.8" diff --git a/license.header b/license.header index 53ee994..51c50b5 100644 --- a/license.header +++ b/license.header @@ -3,7 +3,7 @@ Individual files contain the following tag instead of the full license text. This file is part of the bumpver project https://github.com/mbarkhau/bumpver - Copyright (c) 2018-2021 Manuel Barkhau (mbarkhau@gmail.com) - MIT License + Copyright (c) 2018-2022 Manuel Barkhau (mbarkhau@gmail.com) - MIT License SPDX-License-Identifier: MIT This enables machine processing of license information based on the SPDX diff --git a/setup.cfg b/setup.cfg index 4fc5bba..8c776a4 100644 --- a/setup.cfg +++ b/setup.cfg @@ -89,7 +89,7 @@ addopts = --doctest-modules [bumpver] -current_version = "2021.1114" +current_version = "2022.1115" version_pattern = "YYYY.BUILD[-TAG]" commit_message = "bump {old_version} -> {new_version}" commit = True diff --git a/setup.py b/setup.py index 3b639c9..8091f7d 100644 --- a/setup.py +++ b/setup.py @@ -68,7 +68,7 @@ setuptools.setup( author="Manuel Barkhau", author_email="mbarkhau@gmail.com", url="https://github.com/mbarkhau/bumpver", - version="2021.1114", + version="2022.1115", keywords="version bumpver calver semver versioning bumpversion pep440", description="Bump version numbers in project files.", long_description=long_description, diff --git a/src/bumpver/__init__.py b/src/bumpver/__init__.py index dc86a06..6bbb6de 100644 --- a/src/bumpver/__init__.py +++ b/src/bumpver/__init__.py @@ -1,8 +1,8 @@ # This file is part of the bumpver project # https://github.com/mbarkhau/bumpver # -# Copyright (c) 2018-2021 Manuel Barkhau (mbarkhau@gmail.com) - MIT License +# Copyright (c) 2018-2022 Manuel Barkhau (mbarkhau@gmail.com) - MIT License # SPDX-License-Identifier: MIT """BumpVer: A CLI program for versioning.""" -__version__ = "2021.1114" +__version__ = "2022.1115" diff --git a/src/bumpver/__main__.py b/src/bumpver/__main__.py index dced799..4c32746 100644 --- a/src/bumpver/__main__.py +++ b/src/bumpver/__main__.py @@ -2,7 +2,7 @@ # This file is part of the bumpver project # https://github.com/mbarkhau/bumpver # -# Copyright (c) 2018-2021 Manuel Barkhau (mbarkhau@gmail.com) - MIT License +# Copyright (c) 2018-2022 Manuel Barkhau (mbarkhau@gmail.com) - MIT License # SPDX-License-Identifier: MIT """ __main__ module for BumpVer. diff --git a/src/bumpver/cli.py b/src/bumpver/cli.py index 9f1d1e2..60724b8 100755 --- a/src/bumpver/cli.py +++ b/src/bumpver/cli.py @@ -2,7 +2,7 @@ # This file is part of the bumpver project # https://github.com/mbarkhau/bumpver # -# Copyright (c) 2018-2021 Manuel Barkhau (mbarkhau@gmail.com) - MIT License +# Copyright (c) 2018-2022 Manuel Barkhau (mbarkhau@gmail.com) - MIT License # SPDX-License-Identifier: MIT """cli module for BumpVer.""" import io @@ -247,7 +247,7 @@ def version_options(function: typ.Callable) -> typ.Callable: @click.group() -@click.version_option(version="2021.1114") +@click.version_option(version="2022.1115") @click.help_option() @verbose_option def cli(verbose: int = 0) -> None: diff --git a/src/bumpver/config.py b/src/bumpver/config.py index 4c53089..db31928 100644 --- a/src/bumpver/config.py +++ b/src/bumpver/config.py @@ -1,7 +1,7 @@ # This file is part of the bumpver project # https://gitlab.com/mbarkhau/bumpver # -# Copyright (c) 2018-2021 Manuel Barkhau (mbarkhau@gmail.com) - MIT License +# Copyright (c) 2018-2022 Manuel Barkhau (mbarkhau@gmail.com) - MIT License # SPDX-License-Identifier: MIT """Parse bumpver.toml, setup.cfg or pyproject.toml files.""" diff --git a/src/bumpver/parse.py b/src/bumpver/parse.py index 9afc286..24098dc 100644 --- a/src/bumpver/parse.py +++ b/src/bumpver/parse.py @@ -1,7 +1,7 @@ # This file is part of the bumpver project # https://github.com/mbarkhau/bumpver # -# Copyright (c) 2018-2021 Manuel Barkhau (mbarkhau@gmail.com) - MIT License +# Copyright (c) 2018-2022 Manuel Barkhau (mbarkhau@gmail.com) - MIT License # SPDX-License-Identifier: MIT """Parse PyCalVer strings from files.""" diff --git a/src/bumpver/patterns.py b/src/bumpver/patterns.py index 1f0d49a..b43b2cb 100644 --- a/src/bumpver/patterns.py +++ b/src/bumpver/patterns.py @@ -1,7 +1,7 @@ # This file is part of the bumpver project # https://github.com/mbarkhau/bumpver # -# Copyright (c) 2018-2021 Manuel Barkhau (mbarkhau@gmail.com) - MIT License +# Copyright (c) 2018-2022 Manuel Barkhau (mbarkhau@gmail.com) - MIT License # SPDX-License-Identifier: MIT import typing as typ diff --git a/src/bumpver/pysix.py b/src/bumpver/pysix.py index 1b2b77a..bcaf9a2 100644 --- a/src/bumpver/pysix.py +++ b/src/bumpver/pysix.py @@ -1,7 +1,7 @@ # This file is part of the bumpver project # https://github.com/mbarkhau/bumpver # -# Copyright (c) 2018-2021 Manuel Barkhau (mbarkhau@gmail.com) - MIT License +# Copyright (c) 2018-2022 Manuel Barkhau (mbarkhau@gmail.com) - MIT License # SPDX-License-Identifier: MIT import sys import typing as typ diff --git a/src/bumpver/regexfmt.py b/src/bumpver/regexfmt.py index aaf9b88..93d88de 100644 --- a/src/bumpver/regexfmt.py +++ b/src/bumpver/regexfmt.py @@ -1,7 +1,7 @@ # This file is part of the bumpver project # https://github.com/mbarkhau/bumpver # -# Copyright (c) 2018-2021 Manuel Barkhau (mbarkhau@gmail.com) - MIT License +# Copyright (c) 2018-2022 Manuel Barkhau (mbarkhau@gmail.com) - MIT License # SPDX-License-Identifier: MIT import re import logging diff --git a/src/bumpver/rewrite.py b/src/bumpver/rewrite.py index 269639f..85e2b1f 100644 --- a/src/bumpver/rewrite.py +++ b/src/bumpver/rewrite.py @@ -1,7 +1,7 @@ # This file is part of the bumpver project # https://github.com/mbarkhau/bumpver # -# Copyright (c) 2018-2021 Manuel Barkhau (mbarkhau@gmail.com) - MIT License +# Copyright (c) 2018-2022 Manuel Barkhau (mbarkhau@gmail.com) - MIT License # SPDX-License-Identifier: MIT import typing as typ import difflib diff --git a/src/bumpver/utils.py b/src/bumpver/utils.py index 313542d..8657f0d 100644 --- a/src/bumpver/utils.py +++ b/src/bumpver/utils.py @@ -1,7 +1,7 @@ # This file is part of the bumpver project # https://github.com/mbarkhau/bumpver # -# Copyright (c) 2018-2021 Manuel Barkhau (mbarkhau@gmail.com) - MIT License +# Copyright (c) 2018-2022 Manuel Barkhau (mbarkhau@gmail.com) - MIT License # SPDX-License-Identifier: MIT import typing as typ import functools diff --git a/src/bumpver/v1patterns.py b/src/bumpver/v1patterns.py index 9b891dc..3242f4e 100644 --- a/src/bumpver/v1patterns.py +++ b/src/bumpver/v1patterns.py @@ -1,7 +1,7 @@ # This file is part of the bumpver project # https://github.com/mbarkhau/bumpver # -# Copyright (c) 2018-2021 Manuel Barkhau (mbarkhau@gmail.com) - MIT License +# Copyright (c) 2018-2022 Manuel Barkhau (mbarkhau@gmail.com) - MIT License # SPDX-License-Identifier: MIT """Compose Regular Expressions from Patterns. diff --git a/src/bumpver/v1rewrite.py b/src/bumpver/v1rewrite.py index 76bcd3e..1c16afe 100644 --- a/src/bumpver/v1rewrite.py +++ b/src/bumpver/v1rewrite.py @@ -1,7 +1,7 @@ # This file is part of the bumpver project # https://github.com/mbarkhau/bumpver # -# Copyright (c) 2018-2021 Manuel Barkhau (mbarkhau@gmail.com) - MIT License +# Copyright (c) 2018-2022 Manuel Barkhau (mbarkhau@gmail.com) - MIT License # SPDX-License-Identifier: MIT """Rewrite files, updating occurences of version strings.""" diff --git a/src/bumpver/v1version.py b/src/bumpver/v1version.py index 8c25c1e..ecfac2e 100644 --- a/src/bumpver/v1version.py +++ b/src/bumpver/v1version.py @@ -1,7 +1,7 @@ # This file is part of the bumpver project # https://github.com/mbarkhau/bumpver # -# Copyright (c) 2018-2021 Manuel Barkhau (mbarkhau@gmail.com) - MIT License +# Copyright (c) 2018-2022 Manuel Barkhau (mbarkhau@gmail.com) - MIT License # SPDX-License-Identifier: MIT """Functions related to version string manipulation.""" diff --git a/src/bumpver/v2patterns.py b/src/bumpver/v2patterns.py index 88b9c1b..a923cb9 100644 --- a/src/bumpver/v2patterns.py +++ b/src/bumpver/v2patterns.py @@ -1,7 +1,7 @@ # This file is part of the bumpver project # https://github.com/mbarkhau/bumpver # -# Copyright (c) 2018-2021 Manuel Barkhau (mbarkhau@gmail.com) - MIT License +# Copyright (c) 2018-2022 Manuel Barkhau (mbarkhau@gmail.com) - MIT License # SPDX-License-Identifier: MIT """Compose Regular Expressions from Patterns. diff --git a/src/bumpver/v2rewrite.py b/src/bumpver/v2rewrite.py index 80604f5..5822aa8 100644 --- a/src/bumpver/v2rewrite.py +++ b/src/bumpver/v2rewrite.py @@ -1,7 +1,7 @@ # This file is part of the bumpver project # https://github.com/mbarkhau/bumpver # -# Copyright (c) 2018-2021 Manuel Barkhau (mbarkhau@gmail.com) - MIT License +# Copyright (c) 2018-2022 Manuel Barkhau (mbarkhau@gmail.com) - MIT License # SPDX-License-Identifier: MIT """Rewrite files, updating occurences of version strings.""" diff --git a/src/bumpver/v2version.py b/src/bumpver/v2version.py index f68fc78..6b572f3 100644 --- a/src/bumpver/v2version.py +++ b/src/bumpver/v2version.py @@ -1,7 +1,7 @@ # This file is part of the bumpver project # https://github.com/mbarkhau/bumpver # -# Copyright (c) 2018-2021 Manuel Barkhau (mbarkhau@gmail.com) - MIT License +# Copyright (c) 2018-2022 Manuel Barkhau (mbarkhau@gmail.com) - MIT License # SPDX-License-Identifier: MIT """Functions related to version string manipulation.""" diff --git a/src/bumpver/vcs.py b/src/bumpver/vcs.py index 083d77c..42e46b8 100644 --- a/src/bumpver/vcs.py +++ b/src/bumpver/vcs.py @@ -1,7 +1,7 @@ # This file is part of the bumpver project # https://github.com/mbarkhau/bumpver # -# Copyright (c) 2018-2021 Manuel Barkhau (mbarkhau@gmail.com) - MIT License +# Copyright (c) 2018-2022 Manuel Barkhau (mbarkhau@gmail.com) - MIT License # SPDX-License-Identifier: MIT # # bumpver/vcs.py (this file) is based on code from the diff --git a/src/bumpver/version.py b/src/bumpver/version.py index b344ddb..dca2c16 100644 --- a/src/bumpver/version.py +++ b/src/bumpver/version.py @@ -1,7 +1,7 @@ # This file is part of the bumpver project # https://github.com/mbarkhau/bumpver # -# Copyright (c) 2018-2021 Manuel Barkhau (mbarkhau@gmail.com) - MIT License +# Copyright (c) 2018-2022 Manuel Barkhau (mbarkhau@gmail.com) - MIT License # SPDX-License-Identifier: MIT import typing as typ import datetime as dt