Skip to content

Commit 2c878b0

Browse files
graycreateclaude
andcommitted
fix: replace UI.warning with UI.important in changelog_helper
UI.warning was removed in Fastlane 2.228.0. Replace with UI.important which is the recommended alternative for non-critical warnings. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 3e5f30e commit 2c878b0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

fastlane/changelog_helper.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ def self.extract_changelog(version)
3636
end
3737

3838
if start_index.nil?
39-
UI.warning("Version #{version} not found in CHANGELOG.md")
39+
UI.important("Version #{version} not found in CHANGELOG.md")
4040
UI.message("Available versions:")
4141
lines.each do |line|
4242
if line.match?(/^##\s+v?\d+\.\d+\.\d+/)
@@ -66,7 +66,7 @@ def self.extract_changelog(version)
6666
.strip
6767

6868
if changelog.empty?
69-
UI.warning("No changelog content found for version #{version}")
69+
UI.important("No changelog content found for version #{version}")
7070
return "Bug fixes and improvements"
7171
end
7272

0 commit comments

Comments
 (0)