rust-template-test 0.1.2

A Rust template for test
Documentation
# https://git-cliff.org/docs/configuration

[changelog]
header = """
# Changelog\n
All notable changes to this project will be documented in this file.\n
"""
body = """
{% if version %}\
    ## [{{ version | trim_start_matches(pat="v") }}] - {{ timestamp | date(format="%Y-%m-%d") }}
{% else %}\
    ## [unreleased]
{% endif %}\
{% for group, commits in commits | group_by(attribute="group") %}
    ### {{ group | striptags | trim | upper_first }}
    {% for commit in commits %}
        - {% if commit.scope %}*({{ commit.scope }})* {% endif %}\
            {% if commit.breaking %}[**breaking**] {% endif %}\
            {{ commit.message | upper_first }}\
    {% endfor %}
{% endfor %}\n
"""
footer = """
<!-- generated by git-cliff -->
"""
trim = true
postprocessors = [
  { pattern = '<REPO>', replace = "https://github.com/TerakomariGandesblood/rust-template" },
]

[git]
conventional_commits = true
filter_unconventional = true
split_commits = false
commit_preprocessors = [
  { pattern = '\((\w+\s)?#([0-9]+)\)', replace = "([#${2}](<REPO>/issues/${2}))" },
]
commit_parsers = [
  { message = "^feat", group = "<!-- 0 -->๐Ÿš€ Features" },
  { message = "^fix", group = "<!-- 1 -->๐Ÿ› Bug Fixes" },
  { message = "^docs: update changelog", skip = true },
  { message = "^docs", group = "<!-- 3 -->๐Ÿ“š Documentation" },
  { message = "^style", group = "<!-- 5 -->๐ŸŽจ Styling" },
  { message = "^refactor", group = "<!-- 2 -->๐Ÿšœ Refactor" },
  { message = "^perf", group = "<!-- 4 -->โšก Performance" },
  { message = "^test", group = "<!-- 6 -->๐Ÿงช Testing" },
  { message = "^chore: release", skip = true },
  { message = "^chore\\(release\\): prepare", skip = true },
  { message = "^chore\\(deps.*\\)", skip = true },
  { message = "^chore: pre-commit autoupdate", skip = true },
  { message = "^chore", group = "<!-- 7 -->โš™๏ธ Miscellaneous Tasks" },
  { message = "^revert", group = "<!-- 8 -->โ—€๏ธ Revert" },
]
protect_breaking_commits = false
filter_commits = false
topo_order = false
sort_commits = "oldest"