aboutsummaryrefslogtreecommitdiff
blob: ac6ff228f5f2751293b90b88d6d19c57736e1e1f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
[tool.tbump.version]
current = "2.2.0"
regex = '''
  (?P<major>\d+)
  \.
  (?P<minor>\d+)
  \.
  (?P<patch>\d+)
  '''

[tool.tbump.git]
message_template = "bump to {new_version}"
tag_template = "{new_version}"

[[tool.tbump.file]]
src = "./VERSION"
search = "{current_version}"

[[tool.tbump.file]]
src = "./ebuild-snippets.el"
search = ";; Version: {current_version}"

[[tool.tbump.file]]
src = "./ebuild-snippets.el"
search = "defconst ebuild-snippets-version \"{current_version}\""

[[tool.tbump.before_commit]]
name = "execute make all"
cmd = "make all"