From 4d7364ed1b893ba8498cf5a46b82413079b1131d Mon Sep 17 00:00:00 2001 From: Orhun Parmaksız Date: Tue, 31 Oct 2023 16:55:14 +0100 Subject: fix(cliff): update the tag_pattern to use regex --- cliff.toml | 4 ++-- 1 file 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]+.*" -- cgit v1.2.3-54-g00ecf