Skip to content

Commit

Permalink
docs(changelog): cleaning up changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
jdx committed May 11, 2024
1 parent 0cd86a7 commit 845c1af
Showing 1 changed file with 24 additions and 24 deletions.
48 changes: 24 additions & 24 deletions cliff.toml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ footer = """
# remove the leading and trailing whitespace from the template
trim = true
postprocessors = [
{ pattern = '\$REPO', replace = "https://github.com/jdx/mise" },
{ pattern = '\$REPO', replace = "https://github.com/jdx/mise" },
]

[git]
Expand All @@ -79,31 +79,31 @@ filter_unconventional = false
split_commits = false
# regex for preprocessing the commit messages
commit_preprocessors = [
# remove PR labels from commits
{ pattern = '\(#([0-9]+)\)', replace = "" },
# Check spelling of the commit with https://github.com/crate-ci/typos
# If the spelling is incorrect, it will be automatically fixed.
#{ pattern = '.*', replace_command = 'typos --write-changes -' },
# remove PR labels from commits
{ pattern = '\(#([0-9]+)\)', replace = "" },
# Check spelling of the commit with https://github.com/crate-ci/typos
# If the spelling is incorrect, it will be automatically fixed.
#{ pattern = '.*', replace_command = 'typos --write-changes -' },
]
# regex for parsing and grouping commits
commit_parsers = [
{ message = '^chore\(release\): prepare for', skip = true },
{ message = '^chore\(pr\)', skip = true },
{ message = '^chore\(pull\)', skip = true },
{ message = '^chore: (release|Release)', skip = true },
{ message = '^Release', skip = true },
{ message = "^Merge commit", skip = true },
{ body = '.*security', group = "<!-- 08 -->πŸ›‘οΈ Security" },
{ message = '^(chore|fix)\(deps\):', group = "<!-- 99 -->πŸ“¦οΈ Dependency Updates", scope = "" },
{ message = '^feat', group = "<!-- 00 -->πŸš€ Features" },
{ message = '^fix', group = "<!-- 01 -->πŸ› Bug Fixes" },
{ message = '^refactor', group = "<!-- 02 -->🚜 Refactor" },
{ message = '^doc', group = "<!-- 03 -->πŸ“š Documentation" },
{ message = '^style', group = "<!-- 05 -->🎨 Styling" },
{ message = '^perf', group = "<!-- 04 -->⚑ Performance" },
{ message = '^test', group = "<!-- 06 -->πŸ§ͺ Testing" },
{ message = '^revert', group = "<!-- 09 -->◀️ Revert" },
{ message = '.', group = "<!-- 10 -->πŸ” Other Changes" },
{ message = '^chore\(release\): prepare for', skip = true },
{ message = '^chore\(pr\)', skip = true },
{ message = '^chore\(pull\)', skip = true },
{ message = '^chore: (release|Release)', skip = true },
{ message = '^Release', skip = true },
{ message = "^Merge commit", skip = true },
{ body = '.*security', group = "<!-- 08 -->πŸ›‘οΈ Security" },
{ message = '^(chore|fix)\(deps\):', group = "<!-- 99 -->πŸ“¦οΈ Dependency Updates", scope = "" },
{ message = '^feat', group = "<!-- 00 -->πŸš€ Features" },
{ message = '^fix', group = "<!-- 01 -->πŸ› Bug Fixes" },
{ message = '^refactor', group = "<!-- 02 -->🚜 Refactor" },
{ message = '^doc', group = "<!-- 03 -->πŸ“š Documentation" },
{ message = '^style', group = "<!-- 05 -->🎨 Styling" },
{ message = '^perf', group = "<!-- 04 -->⚑ Performance" },
{ message = '^test', group = "<!-- 06 -->πŸ§ͺ Testing" },
{ message = '^revert', group = "<!-- 09 -->◀️ Revert" },
{ message = '.', group = "<!-- 10 -->πŸ” Other Changes" },
]
# protect breaking changes from being skipped due to matching a skipping commit_parser
protect_breaking_commits = false
Expand All @@ -112,7 +112,7 @@ filter_commits = false
# regex for matching git tags
tag_pattern = '^v\d+\.\d+\.\d+$'
# regex for skipping tags
skip_tags = '^v(1|2023|2024\.0)\.'
skip_tags = '^v(1|2023|2024\.0|2024\.5\.3)'
# regex for ignoring tags
# ignore_tags = ""
# sort the tags topologically
Expand Down

0 comments on commit 845c1af

Please sign in to comment.