Skip to content

Commit

Permalink
doc: adjust git-cliff config for latest version
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
dnaka91 committed Oct 30, 2023
1 parent c74b3a7 commit 7d58f6b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cliff.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 7d58f6b

Please sign in to comment.