swh:1:snp:adcffee4282eeac9899a19b6d401bd7308707119
Raw File
Tip revision: 983f44d2f5abb5107e710fc26ba1afa3ea76b40d authored by Tamas Nepusz on 06 January 2022, 21:20:31 UTC
test: add temporary debug output to failing test case on s390x
Tip revision: 983f44d
tbump.toml
[version]
current = "0.9.3"
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