-
Notifications
You must be signed in to change notification settings - Fork 23
/
tbump.toml
48 lines (40 loc) · 1008 Bytes
/
tbump.toml
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
github_url = "https://github.com/scikit-hep/pylhe/"
[version]
current = "0.9.1"
# Example of a semver regexp.
# Make sure this matches current_version before
# using tbump
regex = '''
(?P<major>\d+)
\.
(?P<minor>\d+)
\.
(?P<patch>\d+)
(rc
(?P<candidate>\d+)
)?
'''
[git]
# The current version will get updated when tbump is run
message_template = "Bump version: 0.9.1 → {new_version}"
tag_template = "v{new_version}"
# For each file to patch, add a [[file]] config
# section containing the path of the file, relative to the
# tbump.toml location.
[[file]]
src = "tbump.toml"
# Restrict search to make it explicit why tbump.toml
# is even included as a file to bump, as it will get
# its version.current attribute bumped anyway.
search = "Bump version: {current_version} → "
[[file]]
src = "README.md"
[[file]]
src = ".zenodo.json"
[[file]]
src = "CITATION.cff"
[[field]]
# the name of the field
name = "candidate"
# the default value to use, if there is no match
default = ""