Skip to content

Commit

Permalink
chore(config): update tag_pattern value for backwards compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
orhun committed Oct 29, 2023
1 parent 596fd4d commit 2c621f7
Show file tree
Hide file tree
Showing 9 changed files with 18 additions and 9 deletions.
3 changes: 2 additions & 1 deletion cliff.toml
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,8 @@ protect_breaking_commits = false
# filter out the commits that are not matched by commit parsers
filter_commits = false
# regex for matching git tags
tag_pattern = "^v[0-9].*"
tag_pattern = "v[0-9].*"

# regex for skipping tags
skip_tags = "beta|alpha"
# regex for ignoring tags
Expand Down
3 changes: 2 additions & 1 deletion config/cliff.toml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,8 @@ protect_breaking_commits = false
# filter out the commits that are not matched by commit parsers
filter_commits = false
# regex for matching git tags
tag_pattern = "^v[0-9].*"
tag_pattern = "v[0-9].*"

# regex for skipping tags
skip_tags = "v0.1.0-beta.1"
# regex for ignoring tags
Expand Down
3 changes: 2 additions & 1 deletion examples/cocogitto.toml
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,8 @@ protect_breaking_commits = false
# filter out the commits that are not matched by commit parsers
filter_commits = false
# regex for matching git tags
tag_pattern = "^v[0-9].*"
tag_pattern = "v[0-9].*"

# regex for skipping tags
skip_tags = "v0.1.0-beta.1"
# regex for ignoring tags
Expand Down
3 changes: 2 additions & 1 deletion examples/detailed.toml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,8 @@ protect_breaking_commits = false
# filter out the commits that are not matched by commit parsers
filter_commits = false
# regex for matching git tags
tag_pattern = "^v[0-9].*"
tag_pattern = "v[0-9].*"

# regex for skipping tags
skip_tags = "v0.1.0-beta.1"
# regex for ignoring tags
Expand Down
3 changes: 2 additions & 1 deletion examples/keepachangelog.toml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,8 @@ protect_breaking_commits = false
# filter out the commits that are not matched by commit parsers
filter_commits = true
# regex for matching git tags
tag_pattern = "^v[0-9].*"
tag_pattern = "v[0-9].*"

# regex for skipping tags
skip_tags = "v0.1.0-beta.1"
# regex for ignoring tags
Expand Down
3 changes: 2 additions & 1 deletion examples/scoped.toml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,8 @@ protect_breaking_commits = false
# filter out the commits that are not matched by commit parsers
filter_commits = false
# regex for matching git tags
tag_pattern = "^v[0-9].*"
tag_pattern = "v[0-9].*"

# regex for skipping tags
skip_tags = "v0.1.0-beta.1"
# regex for ignoring tags
Expand Down
3 changes: 2 additions & 1 deletion examples/scopesorted.toml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,8 @@ protect_breaking_commits = false
# filter out the commits that are not matched by commit parsers
filter_commits = false
# regex for matching git tags
tag_pattern = "^v[0-9].*"
tag_pattern = "v[0-9].*"

# regex for skipping tags
skip_tags = "v0.1.0-beta.1"
# regex for ignoring tags
Expand Down
3 changes: 2 additions & 1 deletion examples/unconventional.toml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,8 @@ protect_breaking_commits = false
# filter out the commits that are not matched by commit parsers
filter_commits = false
# regex for matching git tags
tag_pattern = "^v[0-9].*"
tag_pattern = "v[0-9].*"

# regex for skipping tags
skip_tags = "v0.1.0-beta.1"
# regex for ignoring tags
Expand Down
3 changes: 2 additions & 1 deletion website/docs/configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,8 @@ commit_parsers = [
]
protect_breaking_commits = false
filter_commits = false
tag_pattern = "^v[0-9].*"
tag_pattern = "v[0-9].*"

skip_tags = "v0.1.0-beta.1"
ignore_tags = ""
topo_order = false
Expand Down

0 comments on commit 2c621f7

Please sign in to comment.