-
Notifications
You must be signed in to change notification settings - Fork 103
/
tbump.toml
86 lines (77 loc) · 2.48 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
# https://github.com/TankerHQ/tbump
# https://hackernoon.com/lets-automate-version-number-updates-not-a91q3x7n
# Uncomment this if your project is hosted on GitHub:
github_url = "https://github.com/biojppm/rapidyaml/"
[version]
current = "0.7.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+)
(-(?P<release>[a-z]+)(?P<build>\d+))?
'''
[git]
message_template = "chg: pkg: version {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 = "CMakeLists.txt"
search = "c4_project\\(VERSION {current_version}"
[[file]]
src = "test/test_install/CMakeLists.txt"
search = "c4_project\\(VERSION {current_version}"
[[file]]
src = "test/test_singleheader/CMakeLists.txt"
search = "c4_project\\(VERSION {current_version}"
[[file]]
src = "doc/conf.py"
search = "release\\s*=\\s*['\"]{current_version}['\"]"
[[file]]
src = "doc/Doxyfile"
search = "PROJECT_NUMBER\\s*=\\s*{current_version}"
[[file]]
src = "samples/quickstart.cpp"
search = "GIT_TAG \\s*v{current_version}"
[[file]]
src = "doc/doxy_main.md"
search = ".*{current_version}.*"
[[file]]
src = "doc/sphinx_*.rst"
search = ".*{current_version}.*"
[[file]]
src = "src/c4/yml/version.hpp"
search = "#define RYML_VERSION ['\"]{current_version}['\"]"
[[file]]
src = "src/c4/yml/version.hpp"
version_template = "{major}"
search = "#define RYML_VERSION_MAJOR {current_version}"
[[file]]
src = "src/c4/yml/version.hpp"
version_template = "{minor}"
search = "#define RYML_VERSION_MINOR {current_version}"
[[file]]
src = "src/c4/yml/version.hpp"
version_template = "{patch}"
search = "#define RYML_VERSION_PATCH {current_version}"
# 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"
# TODO: add version header, containing commit hash
# TODO: consolidate changelog from the git logs:
# https://pypi.org/project/gitchangelog/
# https://blogs.sap.com/2018/06/22/generating-release-notes-from-git-commit-messages-using-basic-shell-commands-gitgrep/
# https://medium.com/better-programming/create-your-own-changelog-generator-with-git-aefda291ea93
# Or run some commands after the git tag and the branch
# have been pushed:
# [[after_push]]
# name = "publish"
# cmd = "./publish.sh"