fix(cliff): update the tag_pattern to use regex

This commit is contained in:
Orhun Parmaksız 2023-10-31 16:55:14 +01:00
parent e0ab20d05c
commit 4d7364ed1b
No known key found for this signature in database
GPG Key ID: F83424824B3E4B90
1 changed files with 2 additions and 2 deletions

View File

@ -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]+.*"