forked from scikit-hep/pyhf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tbump.toml
67 lines (54 loc) · 1.36 KB
/
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
github_url = "https://github.com/scikit-hep/pyhf/"
[version]
current = "0.7.0"
# 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.7.0 → {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 = "src/pyhf/utils.py"
# Guard SCHEMA_VERSION
# This search is just identifying the line to restrict the
# regex to, but all matches in the line will get bumped.
search = "pyhf: v{current_version}"
[[file]]
src = "README.rst"
[[file]]
src = "src/pyhf/data/citation.bib"
[[file]]
src = ".zenodo.json"
[[file]]
src = "codemeta.json"
[[file]]
src = "CITATION.cff"
[[file]]
src = "docs/generate_jupyterlite_iframe.py"
[[file]]
src = "docs/jupyterlite.rst"
[[field]]
# the name of the field
name = "candidate"
# the default value to use, if there is no match
default = ""