-
Notifications
You must be signed in to change notification settings - Fork 40
/
tbump.toml
54 lines (45 loc) · 1.35 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
# Uncomment this if your project is hosted on GitHub:
# github_url = "https://github.com/<user or organization>/<project>/"
[version]
current = "1.84"
# Make sure this matches current_version before
# using tbump
regex = '''
(?P<major>\d+)
\.
(?P<minor>\d+)
'''
[git]
message_template = "Bump to {new_version}"
tag_template = "version-{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 = "README.md"
[[file]]
src = "DOWNLOADS.md"
# the search is not needed, but play it safe
[[file]]
src = "src/gui/settings.py"
search = 'APP_VERSION = {current_version}'
[[file]]
src = ".requirement-extras/buildwin_github-actions.iss"
search = 'AppVersion={current_version}'
[[file]]
src = ".requirement-extras/buildwin_github-actions.iss"
search = 'VersionInfoVersion={current_version}'
[[file]]
src = ".requirement-extras/buildwin_github-actions.iss"
search = 'OutputBaseFilename=pynsource-win-{current_version}-setup'
# You can specify a list of commands to
# run after the files have been patched
# and before the git commit is made
# [[before_commit]]
# name = "check changelog"
# cmd = "grep -q {new_version} Changelog.rst"
# Or run some commands after the git tag and the branch
# have been pushed:
# [[after_push]]
# name = "publish"
# cmd = "./publish.sh"