[workspace]
release = true
changelog_update = true
[changelog]
header = """# Changelog
All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
"""
commit_parsers = [
{ message = "^feat", group = "๐ Features" },
{ message = "^fix", group = "๐ Bug Fixes" },
{ message = "^doc", group = "๐ Documentation" },
{ message = "^perf", group = "โก Performance" },
{ message = "^refactor", group = "๐ง Refactoring" },
{ message = "^test", group = "๐งช Testing" },
{ message = "^chore\\(release\\)", skip = true },
{ message = "^chore", group = "๐ฆ Miscellaneous" },
]
protect_breaking_commits = false