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 <moson@archlinux.org>
This commit is contained in:
moson 2023-12-07 21:58:42 +01:00
parent 1b82887cd6
commit 1ba9e6eb44
No known key found for this signature in database
GPG key ID: 4A4760AB4EE15296

View file

@ -47,6 +47,6 @@ commit_parsers = [
# filter out the commits that are not matched by commit parsers # filter out the commits that are not matched by commit parsers
filter_commits = false filter_commits = false
# glob pattern for matching git tags # glob pattern for matching git tags
tag_pattern = "*[0-9]*" tag_pattern = "v[0-9]."
# regex for skipping tags # regex for skipping tags
skip_tags = "v0.1.0-beta.1" skip_tags = "v0.1.0-beta.1"