Skip to content

Commit dea0b86

Browse files
committed
chore: allow major bumps
1 parent cffebb2 commit dea0b86

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

scripts/_utils.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -103,9 +103,7 @@ export async function determineBumpType () {
103103
const config = await loadChangelogConfig(process.cwd())
104104
const commits = await getLatestCommits()
105105

106-
const bumpType = determineSemverChange(commits, config)
107-
108-
return bumpType === 'major' ? 'minor' : bumpType
106+
return determineSemverChange(commits, config)
109107
}
110108

111109
export async function getLatestCommits () {

0 commit comments

Comments
 (0)