diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-29 04:21:29 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-29 04:21:29 +0000 |
commit | 683f1f3ddde13390781318b9fe4a6841ea35d145 (patch) | |
tree | c21fddf99f2e5233bb3f22bbafd0d711fe7c5d95 /.bumpversion.cfg | |
parent | Initial commit. (diff) | |
download | python-tomli-upstream.tar.xz python-tomli-upstream.zip |
Adding upstream version 2.0.1.upstream/2.0.1upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '.bumpversion.cfg')
-rw-r--r-- | .bumpversion.cfg | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/.bumpversion.cfg b/.bumpversion.cfg new file mode 100644 index 0000000..b00d23a --- /dev/null +++ b/.bumpversion.cfg @@ -0,0 +1,13 @@ +[bumpversion] +commit = True +tag = True +tag_name = {new_version} +current_version = 2.0.1 + +[bumpversion:file:pyproject.toml] +search = version = "{current_version}" # DO NOT EDIT THIS LINE MANUALLY. LET bump2version UTILITY DO IT +replace = version = "{new_version}" # DO NOT EDIT THIS LINE MANUALLY. LET bump2version UTILITY DO IT + +[bumpversion:file:src/tomli/__init__.py] +search = __version__ = "{current_version}" +replace = __version__ = "{new_version}" |