From ecafb3c217c569cb3d7f9d262be2e76c4bd91389 Mon Sep 17 00:00:00 2001 From: Manuel Barkhau Date: Thu, 4 May 2023 16:02:46 +0000 Subject: [PATCH] bump 2022.1120 -> 2023.1121 --- 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 15947e4..2eac1c3 100644 --- a/LICENSE +++ b/LICENSE @@ -1,4 +1,4 @@ -MIT License Copyright (c) 2018-2022 Manuel Barkhau (mbarkhau@gmail.com) +MIT License Copyright (c) 2018-2023 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 ef32754..f176ef5 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 2022.1120][img_version]][url_version] +[![CalVer 2023.1121][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=2022.1120&color=blue +[img_version]: https://img.shields.io/static/v1.svg?label=CalVer&message=2023.1121&color=blue [url_version]: https://pypi.org/project/bumpver/ [img_pypi]: https://img.shields.io/badge/PyPI-wheels-green.svg @@ -796,7 +796,7 @@ The create an initial configuration for project with `bumpver init`. $ pip install bumpver ... Installing collected packages: click toml lexid bumpver -Successfully installed bumpver-2022.1120 +Successfully installed bumpver-2023.1121 $ cd myproject ~/myproject/ diff --git a/bootstrapit.sh b/bootstrapit.sh index 13f0598..36e03bd 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="2022.1120" +PACKAGE_VERSION="2023.1121" 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 51c50b5..4c79900 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-2022 Manuel Barkhau (mbarkhau@gmail.com) - MIT License + Copyright (c) 2018-2023 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 f8bce5b..18bfa31 100644 --- a/setup.cfg +++ b/setup.cfg @@ -89,7 +89,7 @@ addopts = --doctest-modules [bumpver] -current_version = "2022.1120" +current_version = "2023.1121" version_pattern = "YYYY.BUILD[-TAG]" commit_message = "bump {old_version} -> {new_version}" commit = True diff --git a/setup.py b/setup.py index d28d5eb..8e8c140 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="2022.1120", + version="2023.1121", 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 7a81333..e5d599b 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-2022 Manuel Barkhau (mbarkhau@gmail.com) - MIT License +# Copyright (c) 2018-2023 Manuel Barkhau (mbarkhau@gmail.com) - MIT License # SPDX-License-Identifier: MIT """BumpVer: A CLI program for versioning.""" -__version__ = "2022.1120" +__version__ = "2023.1121" diff --git a/src/bumpver/__main__.py b/src/bumpver/__main__.py index 4c32746..1bedc14 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-2022 Manuel Barkhau (mbarkhau@gmail.com) - MIT License +# Copyright (c) 2018-2023 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 7870220..168971b 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-2022 Manuel Barkhau (mbarkhau@gmail.com) - MIT License +# Copyright (c) 2018-2023 Manuel Barkhau (mbarkhau@gmail.com) - MIT License # SPDX-License-Identifier: MIT """cli module for BumpVer.""" import io @@ -253,7 +253,7 @@ def version_options(function: typ.Callable) -> typ.Callable: @click.group(context_settings={'help_option_names': ["-h", "--help"]}) -@click.version_option(version="2022.1120") +@click.version_option(version="2023.1121") @verbose_option def cli(verbose: int = 0) -> None: """Automatically update version strings in plaintext files.""" diff --git a/src/bumpver/config.py b/src/bumpver/config.py index f418f99..a73dc01 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-2022 Manuel Barkhau (mbarkhau@gmail.com) - MIT License +# Copyright (c) 2018-2023 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 24098dc..ce0a2ad 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-2022 Manuel Barkhau (mbarkhau@gmail.com) - MIT License +# Copyright (c) 2018-2023 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 b43b2cb..c62cba8 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-2022 Manuel Barkhau (mbarkhau@gmail.com) - MIT License +# Copyright (c) 2018-2023 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 bcaf9a2..f72b460 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-2022 Manuel Barkhau (mbarkhau@gmail.com) - MIT License +# Copyright (c) 2018-2023 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 93d88de..d58f02c 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-2022 Manuel Barkhau (mbarkhau@gmail.com) - MIT License +# Copyright (c) 2018-2023 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 85e2b1f..c8ca94a 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-2022 Manuel Barkhau (mbarkhau@gmail.com) - MIT License +# Copyright (c) 2018-2023 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 8657f0d..9937559 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-2022 Manuel Barkhau (mbarkhau@gmail.com) - MIT License +# Copyright (c) 2018-2023 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 3242f4e..6fd5f6b 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-2022 Manuel Barkhau (mbarkhau@gmail.com) - MIT License +# Copyright (c) 2018-2023 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 1c16afe..b1586a5 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-2022 Manuel Barkhau (mbarkhau@gmail.com) - MIT License +# Copyright (c) 2018-2023 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 ecfac2e..8963c38 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-2022 Manuel Barkhau (mbarkhau@gmail.com) - MIT License +# Copyright (c) 2018-2023 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 ee9008f..50ca589 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-2022 Manuel Barkhau (mbarkhau@gmail.com) - MIT License +# Copyright (c) 2018-2023 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 5822aa8..a9b48d6 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-2022 Manuel Barkhau (mbarkhau@gmail.com) - MIT License +# Copyright (c) 2018-2023 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 9438334..622828c 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-2022 Manuel Barkhau (mbarkhau@gmail.com) - MIT License +# Copyright (c) 2018-2023 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 d2a5b7e..932f5f7 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-2022 Manuel Barkhau (mbarkhau@gmail.com) - MIT License +# Copyright (c) 2018-2023 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 01e9ca6..3acad60 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-2022 Manuel Barkhau (mbarkhau@gmail.com) - MIT License +# Copyright (c) 2018-2023 Manuel Barkhau (mbarkhau@gmail.com) - MIT License # SPDX-License-Identifier: MIT import typing as typ import datetime as dt