Skip to content

Commit

Permalink
fix: consider docs and refactor as semver patch for bump
Browse files Browse the repository at this point in the history
  • Loading branch information
pi0 committed Oct 16, 2022
1 parent 5451f18 commit 648ccf1
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/config.ts
Expand Up @@ -19,13 +19,13 @@ const ConfigDefaults: ChangelogConfig = {
feat: { title: 'πŸš€ Enhancements', semver: 'minor' },
perf: { title: 'πŸ”₯ Performance', semver: 'patch' },
fix: { title: '🩹 Fixes', semver: 'patch' },
refactor: { title: 'πŸ’… Refactors' },
examples: { title: 'πŸ€ Examples' },
docs: { title: 'πŸ“– Documentation' },
chore: { title: '🏑 Chore' },
refactor: { title: 'πŸ’… Refactors', semver: 'patch' },
docs: { title: 'πŸ“– Documentation', semver: 'patch' },
build: { title: 'πŸ“¦ Build', semver: 'patch' },
test: { title: 'βœ… Tests' },
types: { title: '🌊 Types', semver: 'patch' },
chore: { title: '🏑 Chore' },
examples: { title: 'πŸ€ Examples' },
test: { title: 'βœ… Tests' },
style: { title: '🎨 Styles' },
ci: { title: 'πŸ€– CI' }
},
Expand Down

0 comments on commit 648ccf1

Please sign in to comment.