forked from typst-community/glossarium
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtbump.toml
More file actions
41 lines (32 loc) · 845 Bytes
/
tbump.toml
File metadata and controls
41 lines (32 loc) · 845 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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# Uncomment this if your project is hosted on GitHub:
# github_url = "https://github.com/<user or organization>/<project>/"
[version]
current = "0.2.5"
# 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}"
[[file]]
src = "typst.toml"
search = 'version = "{current_version}"'
[[file]]
src = "makefile"
search = 'version={current_version}'
[[file]]
src = "README.md"
search = '#import "@preview/glossarium:{current_version}": make-glossary, print-glossary, gls, glspl'
[[before_commit]]
name = "compile examples"
cmd = "typst compile example/example.typ --root . "
[[after_push]]
name = "Create local version of package"
cmd = "make local"