asic-rs 0.7.3

Simple ASIC management in Rust
Documentation
# git-cliff ~ configuration file
# https://git-cliff.org/docs/configuration

[changelog]
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 %}
{% if github.contributors | filter(attribute="is_first_time", value=true) | length > 0 %}
    ### New Contributors โค๏ธ
    {% for contributor in github.contributors | filter(attribute="is_first_time", value=true) %}
        * @{{ contributor.username }} made their first contribution
            {%- if contributor.pr_number %} in #{{ contributor.pr_number }}{%- endif %}
    {% endfor %}
{% endif %}\
"""

trim = true
render_always = true
postprocessors = []

[git]
ignore_tags = "python-.*"
conventional_commits = true
filter_unconventional = true
require_conventional = false
split_commits = false
commit_preprocessors = [
    { pattern = '\((\w+\s)?#([0-9]+)\)', replace = "([#${2}](https://github.com/256-foundation/asic-rs/issues/${2}))"},
#    { pattern = '.*', replace_command = 'typos --write-changes -' },
]
protect_breaking_commits = false
commit_parsers = [
    { message = "^feat|^feature", group = "<!-- 0 -->๐Ÿš€ Features" },
    { message = "^fix|^bug", group = "<!-- 1 -->๐Ÿ› Bug Fixes" },
    { message = "^doc", group = "<!-- 3 -->๐Ÿ“š Documentation" },
    { message = "^perf", group = "<!-- 4 -->โšก Performance" },
    { message = "^refactor", group = "<!-- 2 -->๐Ÿšœ Refactor" },
    { message = "^style", group = "<!-- 5 -->๐ŸŽจ Styling" },
    { message = "^test", group = "<!-- 6 -->๐Ÿงช Testing" },
    { message = "^chore\\(release\\): prepare for", skip = true },
    { message = "^chore\\(deps.*\\)", skip = true },
    { message = "^chore\\(pr\\)", skip = true },
    { message = "^chore\\(pull\\)", skip = true },
    { message = "^chore: format, fix lints|^chore: Format", skip = true },
    { message = "^version", skip = true },
    { message = "^chore|^ci", group = "<!-- 7 -->โš™๏ธ Miscellaneous Tasks" },
    { body = ".*security", group = "<!-- 8 -->๐Ÿ›ก๏ธ Security" },
    { message = "^revert", group = "<!-- 9 -->โ—€๏ธ Revert" },
    { message = ".*", group = "<!-- 10 -->๐Ÿ’ผ Other" },
]
filter_commits = false
fail_on_unmatched_commit = false
link_parsers = []
use_branch_tags = false
topo_order = false
topo_order_commits = true
sort_commits = "oldest"
recurse_submodules = false

[remote.github]
owner = "256-foundation"
repo = "asic-rs"

[bump]
features_always_bump_minor = false
breaking_always_bump_major = false
initial_tag = "0.1.0"