From e4869beb82d500d58fd89b55da10f147d7851aa8 Mon Sep 17 00:00:00 2001 From: Zacchary Dempsey-Plante Date: Wed, 17 Jan 2024 05:05:57 -0500 Subject: [PATCH] misc(dev): Update `cliff.toml` to use a regular expression for `tag_pattern`. This is required due to orhun/git-cliff#318. --- cliff.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cliff.toml b/cliff.toml index a3701da..89f02db 100644 --- a/cliff.toml +++ b/cliff.toml @@ -58,8 +58,8 @@ commit_parsers = [ protect_breaking_commits = true # Filter out the commits that are not matched by commit parsers filter_commits = false -# Glob pattern for matching git tags -tag_pattern = "*" +# Regex for matching git tags +tag_pattern = ".*" # Regex for skipping tags skip_tags = "" # Regex for ignoring tags