From 1ba9e6eb4496b52b1852b5732e0c0564fdde1896 Mon Sep 17 00:00:00 2001 From: moson Date: Thu, 7 Dec 2023 21:58:42 +0100 Subject: [PATCH] fix: change git-cliff "tag_pattern" option to regex Changed with v1.4.0 See: https://github.com/orhun/git-cliff/pull/318 Signed-off-by: moson --- cliff.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cliff.toml b/cliff.toml index 12cd7e0b..3d3cb1c7 100644 --- a/cliff.toml +++ b/cliff.toml @@ -47,6 +47,6 @@ commit_parsers = [ # filter out the commits that are not matched by commit parsers filter_commits = false # glob pattern for matching git tags -tag_pattern = "*[0-9]*" +tag_pattern = "v[0-9]." # regex for skipping tags skip_tags = "v0.1.0-beta.1"