https://github.com/ntamas/plfit
Revision 42c66c187ca7f55c2ea76b918bad0105e831fb27 authored by Tamas Nepusz on 27 December 2021, 10:37:13 UTC, committed by Tamas Nepusz on 27 December 2021, 10:37:19 UTC
1 parent e93a739
Raw File
Tip revision: 42c66c187ca7f55c2ea76b918bad0105e831fb27 authored by Tamas Nepusz on 27 December 2021, 10:37:13 UTC
chore: updated changelog
Tip revision: 42c66c1
tbump.toml
[version]
current = "0.9.2"
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