Skip to content

Commit e115871

Browse files
committed
chore: allow changelogs with breaking changes
1 parent 77685e4 commit e115871

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/update-changelog.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ async function main () {
1111
const config = await loadChangelogConfig(process.cwd(), {})
1212

1313
const commits = await getLatestCommits().then(commits => commits.filter(
14-
c => config.types[c.type] && !(c.type === 'chore' && c.scope === 'deps' && !c.isBreaking),
14+
c => config.types[c.type] && !(c.type === 'chore' && c.scope === 'deps'),
1515
))
1616
const bumpType = await determineBumpType() || 'patch'
1717

0 commit comments

Comments
 (0)