Skip to content

Commit

Permalink
chore: allow major bumps
Browse files Browse the repository at this point in the history
  • Loading branch information
danielroe committed Jun 21, 2024
1 parent cffebb2 commit dea0b86
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions scripts/_utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -103,9 103,7 @@ export async function determineBumpType () {
const config = await loadChangelogConfig(process.cwd())
const commits = await getLatestCommits()

const bumpType = determineSemverChange(commits, config)

return bumpType === 'major' ? 'minor' : bumpType
return determineSemverChange(commits, config)
}

export async function getLatestCommits () {
Expand Down

0 comments on commit dea0b86

Please sign in to comment.