cleansys 0.3.2

A modern terminal user interface for Linux system cleanup similar to BleachBit only faster, written in Rust and memory safe.
Documentation
[changelog]
# changelog header
header = """
# Changelog

All notable changes to this project will be documented in this file.

"""
# template for the changelog body
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 }}
{% for commit in commits -%}
- {{ commit.message | split(pat="\n") | first | trim }}{% if commit.breaking %} **[BREAKING]**{% endif %}
{% endfor -%}

{% endfor -%}
{% if version and previous.version -%}
**Full Changelog**: https://github.com/sorinirimies/cleansys/compare/{{ previous.version }}...{{ version }}
{% endif -%}
"""
# remove the leading and trailing whitespace from the template
trim = true

[git]
# allow all commit types (set to false to include non-conventional commits)
conventional_commits = false
# regex for parsing and grouping commits
commit_parsers = [
    { message = "^[Ff]eat(?:\\(.*\\))?:?\\s", group = "โœจ Features" },
    { message = "^[Ff]ix(?:\\(.*\\))?:?\\s", group = "๐Ÿ› Bug Fixes" },
    { message = "^[Dd]ocs(?:\\(.*\\))?:?\\s", group = "๐Ÿ“š Documentation" },
    { message = "^[Pp]erf(?:\\(.*\\))?:?\\s", group = "โšก Performance" },
    { message = "^[Rr]efactor(?:\\(.*\\))?:?\\s", group = "โ™ป๏ธ Refactor" },
    { message = "^[Ss]tyle(?:\\(.*\\))?:?\\s", group = "๐Ÿ’„ Styling" },
    { message = "^[Tt]est(?:\\(.*\\))?:?\\s", group = "๐Ÿงช Testing" },
    { message = "^[Cc]hore(?:\\(.*\\))?:?\\s", group = "๐Ÿ”ง Chores" },
    { message = "^[Bb]uild(?:\\(.*\\))?:?\\s", group = "๐Ÿ“ฆ Build" },
    { message = "^[Cc]i(?:\\(.*\\))?:?\\s", group = "๐Ÿ”„ CI" },
    { message = "^[Aa]dd(?:\\(.*\\))?:?\\s", group = "โž• Added" },
    { message = "^[Uu]pdate(?:\\(.*\\))?:?\\s", group = "๐Ÿ”„ Updated" },
    { message = "^[Ee]nhance(?:\\(.*\\))?:?\\s", group = "โœ… Enhanced" },
    { message = "^[Ii]mprove(?:\\(.*\\))?:?\\s", group = "๐Ÿ“ˆ Improvements" },
    { message = "^[Ii]ntroduce\\s", group = "โœจ Features" },
    { message = ".*", group = "๐Ÿ“ฆ Other Changes" },
]
# filter out the commits that are not matched by commit_parsers
filter_commits = false
# glob pattern for matching git tags
tag_pattern = "v[0-9]*"
# sort the tags chronologically
sort_tags = true
# protect breaking changes from being skipped due to matching skip pattern
protect_breaking_commits = true

[github]
# add GitHub release URLs to the changelog
add_links = true
# owner and repo that's hosting the project
owner = "sorinirimies"
repo = "cleansys"

# Generate links for issues and PRs
issues = true
pull_requests = true
# Use GitHub milestone as the version
use_milestone = false
# Link to GitHub milestone
link_milestone = false