https://github.com/ntamas/plfit
Revision 6de5b1468c1851675105537673226fa2af4d9e68 authored by Tamas Nepusz on 09 September 2022, 09:32:21 UTC, committed by Tamas Nepusz on 09 September 2022, 09:32:21 UTC
1 parent f8a7d6c
Raw File
Tip revision: 6de5b1468c1851675105537673226fa2af4d9e68 authored by Tamas Nepusz on 09 September 2022, 09:32:21 UTC
fix: avoid allocations of zero-length blocks
Tip revision: 6de5b14
tbump.toml
[version]
current = "0.9.4"
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