We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d3d3f2a commit 1bf19dfCopy full SHA for 1bf19df
1 file changed
rakelib/release.rake
@@ -546,7 +546,9 @@ def resolve_version_input(version_input, monorepo_root)
546
# If the latest changelog version matches the current version but hasn't been
547
# tagged yet, use it. This handles the case where the changelog was updated
548
# and the version bumped in a prior step (e.g., RC → stable promotion).
549
- if changelog_version && !version_tagged?(monorepo_root, changelog_version)
+ if changelog_version &&
550
+ Gem::Version.new(changelog_version) == Gem::Version.new(current_version) &&
551
+ !version_tagged?(monorepo_root, changelog_version)
552
puts "Found untagged CHANGELOG.md version: #{changelog_version} (current: #{current_version})"
553
return changelog_version
554
end
0 commit comments