-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtbump.toml
48 lines (31 loc) · 867 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/ingwersen-erik/pyimg/"
[version]
current = "0.0.1"
# MAJOR.MINOR.PATCH (e.g. 0.1.0)
regex = '(?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)'
[git]
message_template = "Bump to {new_version}"
tag_template = "v{new_version}"
[[file]]
src = "setup.py"
search = "'fallback_version': '{current_version}'"
[[file]]
src = "README.rst"
search = "/v{current_version}.svg"
[[file]]
src = "README.rst"
search = "/v{current_version}...main"
[[file]]
src = "docs/conf.py"
search = "version = release = '{current_version}'"
[[file]]
src = "src/pyimg/__init__.py"
search = "__version__ = '{current_version}'"
[[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"