diff options
| author | Stefan Boberg <[email protected]> | 2026-02-23 11:19:52 +0100 |
|---|---|---|
| committer | GitHub Enterprise <[email protected]> | 2026-02-23 11:19:52 +0100 |
| commit | 9aac0fd369b87e965fb34b5168646387de7ea1cd (patch) | |
| tree | 367a820685a829adbab31cd1374b1af2cece4b7e /thirdparty/ryml/ext/c4core/tbump.toml | |
| parent | changed command names and descriptions to use class members instead of string... (diff) | |
| download | zen-9aac0fd369b87e965fb34b5168646387de7ea1cd.tar.xz zen-9aac0fd369b87e965fb34b5168646387de7ea1cd.zip | |
implement yaml generation (#774)
this implements a yaml generation strategy similar to the JSON generation where we just build a string instead of building a ryml tree.
This also removes the dependency on ryml for reduced binary/build times.
Diffstat (limited to 'thirdparty/ryml/ext/c4core/tbump.toml')
| -rw-r--r-- | thirdparty/ryml/ext/c4core/tbump.toml | 48 |
1 files changed, 0 insertions, 48 deletions
diff --git a/thirdparty/ryml/ext/c4core/tbump.toml b/thirdparty/ryml/ext/c4core/tbump.toml deleted file mode 100644 index 310c606d6..000000000 --- a/thirdparty/ryml/ext/c4core/tbump.toml +++ /dev/null @@ -1,48 +0,0 @@ -# Uncomment this if your project is hosted on GitHub: -# github_url = "https://github.com/<user or organization>/<project>/" - -[version] -current = "0.1.11" - -# 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}" - -# 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}" - -# 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" |