libcpuname 0.1.3

Identify CPU vendors, chips, and cores across multiple architectures
Documentation
# git-cliff ~ configuration file
# https://git-cliff.org/docs/configuration

[changelog]
body = """
{% if version %}\
    ## {{ version }} - {{ 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 }}\
            {% if commit.remote.username and commit.remote.pr_number %} (@{{ commit.remote.username }} in #{{ commit.remote.pr_number }})\
            {% elif commit.remote.username %} (@{{ commit.remote.username }})\
            {% elif commit.remote.pr_number %} (in #{{ commit.remote.pr_number }}{%- endif %}\
    {% endfor %}
{% endfor %}\n
"""
postprocessors = [
    { pattern = " \\(#(\\d+)\\)", replace = "" }
]

[bump]
features_always_bump_minor = false

[git]
filter_unconventional = false
require_conventional = true
commit_parsers = [
    { message = "^feat", group = "<!-- 0 -->๐Ÿš€ Features" },
    { message = "^fix", 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 = "^build", group = "<!-- 7 -->๐Ÿ”จ Build" },
    { body = ".*security", group = "<!-- 8 -->๐Ÿ›ก๏ธ Security" },
    { message = "^revert", group = "<!-- 9 -->โ—€๏ธ Revert" },
    { message = "^chore|^ci", skip = true },
    { message = ".*", group = "<!-- 10 -->๐Ÿ’ผ Other" },
]

[remote.gitea]
owner = "serebit"
repo = "libcpuname"