bump2version/.bumpversion.toml
TECHNOFAB 5e120a6ab8
feat: rewrite huge parts
- real config parsing
- actually working parts, with support for string parts
- handle readonly config (preparation for use with Nix)
- cleanup cli (remove colors, fancy stuff etc., keep it minimal)
- switch to tracing for logging
2024-12-27 13:46:25 +01:00

13 lines
341 B
TOML

current_version = "0.1.4"
commit = true
tag = true
# parse = '(?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(-(?P<stage>[^.]*)\.(?P<devnum>\d+))?'
# serialize = "{major}.{minor}.{patch}-{stage}.{devnum}"
# example part:
[part.stage]
type = "string"
values = ["alpha", "beta", "stable"]
[file."Cargo.toml"]
format = 'version = "{version}"'