diff options
author | Orhun Parmaksız <orhunparmaksiz@gmail.com> | 2023-10-31 16:55:14 +0100 |
---|---|---|
committer | Orhun Parmaksız <orhunparmaksiz@gmail.com> | 2023-10-31 16:55:14 +0100 |
commit | 4d7364ed1b893ba8498cf5a46b82413079b1131d (patch) | |
tree | 7b1f26653b93f9cc984169fb758a240681a78fae /cliff.toml | |
parent | e0ab20d05c7cf1807194d40b222970700f9f92fc (diff) | |
download | devtools-4d7364ed1b893ba8498cf5a46b82413079b1131d.tar.xz |
fix(cliff): update the tag_pattern to use regex
Diffstat (limited to 'cliff.toml')
-rw-r--r-- | cliff.toml | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -40,5 +40,5 @@ commit_parsers = [ ] # filter out the commits that are not matched by commit parsers filter_commits = false -# glob pattern for matching git tags -tag_pattern = "*v[0-9]*" +# regex for matching git tags +tag_pattern = "^v[0-9]+\\.[0-9]+\\.[0-9]+.*" |