-
Notifications
You must be signed in to change notification settings - Fork 1
/
tbump.toml
42 lines (34 loc) · 990 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
# Uncomment this if your project is hosted on GitHub:
# github_url = "https://github.com/<user or organization>/<project>/"
[version]
current = "1.1.2"
# Example of a semver regexp.
# Make sure this matches current_version before
# using tbump
regex = '''
(?P<major>\d+)
\.
(?P<minor>\d+)
\.
(?P<patch>\d+)
'''
[git]
message_template = "Bump to {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 = "pyproject.toml"
search = 'version = "{current_version}"'
[[file]]
src = "src/main/python/pyes/ui/PyES_about.py"
search = "PyES Version {current_version}"
[[file]]
src = "src/main/python/pyes/ui/PyES_about.ui"
search = "PyES Version {current_version}"
[[file]]
src = "src/build/settings/base.json"
[[before_commit]]
name = "Update Changelog"
cmd = "poetry run python scripts/changelog_generator.py v{current_version} v{new_version}"