Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOrhun Parmaksız <orhunparmaksiz@gmail.com>2023-10-31 16:55:14 +0100
committerOrhun Parmaksız <orhunparmaksiz@gmail.com>2023-10-31 16:55:14 +0100
commit4d7364ed1b893ba8498cf5a46b82413079b1131d (patch)
tree7b1f26653b93f9cc984169fb758a240681a78fae
parente0ab20d05c7cf1807194d40b222970700f9f92fc (diff)
fix(cliff): update the tag_pattern to use regex
-rw-r--r--cliff.toml4
1 files changed, 2 insertions, 2 deletions
diff --git a/cliff.toml b/cliff.toml
index 597d778..ab01a6b 100644
--- a/cliff.toml
+++ b/cliff.toml
@@ -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]+.*"