https://github.com/ntamas/plfit
Raw File
Tip revision: 4c68c8de3c030e4ad88d8a42aa26ad98b38bc979 authored by Tamas Nepusz on 09 March 2024, 09:57:14 UTC
chore: bumped version to 0.9.5
Tip revision: 4c68c8d
tbump.toml
[version]
current = "0.9.5"
regex = '''
  (?P<major>\d+)
  \.
  (?P<minor>\d+)
  \.
  (?P<patch>\d+)
  '''

[git]
message_template = "chore: bumped version to {new_version}"
tag_template = "{new_version}"

[[file]]
src = "CMakeLists.txt"
search = 'VERSION {current_version}'

[[before_commit]]
name = "Run tests"
cmd = "mkdir -p build && cmake -S . -B build && cmake --build build && ctest --test-dir build"
back to top