-
Notifications
You must be signed in to change notification settings - Fork 3
/
tbump.toml
63 lines (56 loc) · 1.26 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
[version]
current = "0.2.0"
# valid versions:
# we use semver
# valid syntax are :
# x.y.z-wip for WIP stage (beg dev cycle without releases and not really working)
# x.y.z-[alpha|beta|rc].i for alpha, beta, RC versionning
# x.y.z for stable releases
regex = '''
(?P<major>\d+)
\.
(?P<minor>\d+)
\.
(?P<patch>\d+)
(
-
(
(?P<channel>alpha|beta|rc)
\.
(?P<release>\d+)
)
)?
'''
[git]
message_template = """
EL-LE-VATE to {new_version}
\\
___
D>=G===' '.
|======|
|======|
)--/]IIIIII]
|_______|
C O O O D
C O O O D
C O O O D
C__O__O__O__D
snd [_____________]
"""
tag_template = "{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 = "dalec_caldav/__init__.py"
# 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 = "run tests"
cmd = "tox -e py39-django22,py39-django32,py39-django42,qa"
# Or run some commands after the git tag and the branch
# have been pushed:
# [[after_push]]
# name = "publish"
# cmd = "./publish.sh"