Skip to content

Commit

Permalink
chore: don't omit any commit types from changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
mbhall88 committed Jan 3, 2024
1 parent 5ac1b3d commit ce07ce3
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions cog.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,19 @@ pre_bump_hooks = [
"cargo bump {{version}}",
]

[commit_types]
chore = { changelog_title = "Chores", omit_from_changelog = false }
feat = { changelog_title = "Features", omit_from_changelog = false }
fix = { changelog_title = "Bug Fixes", omit_from_changelog = false }
perf = { changelog_title = "Performance Improvements", omit_from_changelog = false }
refactor = { changelog_title = "Code Refactoring", omit_from_changelog = false }
revert = { changelog_title = "Reverts", omit_from_changelog = false }
style = { changelog_title = "Styles", omit_from_changelog = false }
test = { changelog_title = "Tests", omit_from_changelog = false }
ci = { changelog_title = "Continuous Integration", omit_from_changelog = false }
build = { changelog_title = "Build System", omit_from_changelog = false }
docs = { changelog_title = "Documentation", omit_from_changelog = false }

[changelog]
path = "CHANGELOG.md"
template = "remote"
Expand Down

0 comments on commit ce07ce3

Please sign in to comment.