diff options
Diffstat (limited to '.chglog/config.yml')
-rwxr-xr-x | .chglog/config.yml | 37 |
1 files changed, 24 insertions, 13 deletions
diff --git a/.chglog/config.yml b/.chglog/config.yml index 65780be..6c3b573 100755 --- a/.chglog/config.yml +++ b/.chglog/config.yml @@ -4,25 +4,36 @@ info: title: CHANGELOG repository_url: https://git.hampusmat.com/syrette options: + sort: "semver" commits: - # filters: - # Type: - # - feat - # - fix - # - perf - # - refactor + filters: + Type: + - feat + - fix + - perf + - refactor + - style + - chore + - build + - docs + - test commit_groups: - # title_maps: - # feat: Features - # fix: Bug Fixes - # perf: Performance Improvements - # refactor: Code Refactoring + title_maps: + feat: Features + fix: Bug Fixes + perf: Performance Improvements + refactor: Code Refactoring + style: Style Improvements + chore: Chores + build: Build System/Dependency Changes + docs: Documentation Changes + test: Code Testing header: - pattern: "^(\\w*)(?:\\(([\\w\\$\\.\\-\\*\\s]*)\\))?\\:\\s(.*)$" + pattern: "^(\\w*)!?(?:\\(([\\w\\$\\.\\-\\*\\s]*)\\))?\\:\\s(.*)$" pattern_maps: - Type - Scope - Subject notes: keywords: - - BREAKING CHANGE
\ No newline at end of file + - BREAKING CHANGE |