From 588f7f31483c39528e76cae3a13f9d4bae5f857e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kat=20March=C3=A1n?= Date: Mon, 13 Sep 2021 18:35:37 -0700 Subject: [PATCH] meta: fix tag_pattern for git-cliff --- cliff.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cliff.toml b/cliff.toml index 1148831..3bdfb9f 100644 --- a/cliff.toml +++ b/cliff.toml @@ -57,6 +57,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\\d+\\.\\d+\\.\\d+" # regex for skipping tags # skip_tags = "v0.1.0-beta.1"