-
-
Notifications
You must be signed in to change notification settings - Fork 91
Expand file tree
/
Copy pathtbump.toml
More file actions
26 lines (24 loc) · 631 Bytes
/
tbump.toml
File metadata and controls
26 lines (24 loc) · 631 Bytes
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
# tbump is used to simplify and standardize the release process when updating
# the version, making a git commit and tag, and pushing changes.
#
# For details see RELEASE.md.
#
# ref: https://github.com/your-tools/tbump#readme
#
[version]
current = "2024.1.1"
regex = '''
(?P<major>\d+)
\.
(?P<minor>\d+)
\.
(?P<patch>\d+)
'''
[git]
message_template = "Version {new_version}"
tag_template = "{new_version}"
# Configuring tbump.toml below is a hack to ensure tbump can be used even though
# no other file needs updating as chartpress does it based on the git tag when
# packaging the charts.
[[file]]
src = "tbump.toml"