diff options
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..058dbaa --- /dev/null +++ b/.bumpversion.cfg @@ -0,0 +1,13 @@ +[bumpversion] +commit = True +tag = True +tag_name = {new_version} +current_version = 0.1.2 + +[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/mdurl/__init__.py] +search = __version__ = "{current_version}" +replace = __version__ = "{new_version}" |