From 7d58f6b961e6616a8b97a9ae24cff1dcd1ad7ea1 Mon Sep 17 00:00:00 2001 From: Dominik Nakamura Date: Mon, 30 Oct 2023 11:01:23 +0900 Subject: [PATCH] doc: adjust git-cliff config for latest version The latest v1.4.0 of `git-cliff` changes the tag_pattern setting from a glob pattern to a RegEx pattern. Therefore, the current setting needs slight tweaking. --- cliff.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cliff.toml b/cliff.toml index 118042e..224d7bf 100644 --- a/cliff.toml +++ b/cliff.toml @@ -96,8 +96,8 @@ commit_parsers = [ protect_breaking_commits = false # 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].*" # regex for skipping tags skip_tags = "alpha|beta" # regex for ignoring tags