zing-art 1.1.0

A TUI for physical string art placement. It takes a sequence, you pull the thread. ZING: Zing Is Not Generating.
# 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 %}
"""
trim = true
render_always = true

postprocessors = [
    { pattern = '<REPO>', replace = "https://github.com/000Volk000/zing" },
]

[git]

conventional_commits = true
filter_unconventional = false
split_commits = false

commit_preprocessors = [
    { pattern = '\((\w+\s)?#([0-9]+)\)', replace = "([#${2}](<REPO>/issues/${2}))"},
]

protect_breaking_commits = false
filter_commits = false

commit_parsers = [
    { message = "^feat", group = "๐Ÿš€ Features" },
    { message = "^fix", group = "๐Ÿ› Bug Fixes" },
    { message = "^doc", group = "๐Ÿ“š Documentation" },
    { message = "^perf", group = "โšก Performance" },
    { message = "^refactor", group = "๐Ÿšœ Refactor" },
    { message = "^style", group = "๐ŸŽจ Styling" },
    { message = "^test", group = "๐Ÿงช 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|^ci", group = "โš™๏ธ Miscellaneous Tasks" },
    { body = ".*security", group = "๐Ÿ›ก๏ธ Security" },
    { message = "^revert", group = "โ—€๏ธ Revert" },
    { message = ".*", group = "๐Ÿ’ผ Other" },
]

tag_pattern = "v[0-9].*"
topo_order = false
sort_commits = "newest"