From 2a6c02bb4b7d0dcde910dad99559cfe5125949f6 Mon Sep 17 00:00:00 2001 From: Mathijs Kadijk Date: Sat, 23 Jun 2018 14:12:29 +0200 Subject: [PATCH] Become compatible with the new Fastlane version --- fastlane/Fastfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fastlane/Fastfile b/fastlane/Fastfile index 48cc68e..5c2bb3b 100644 --- a/fastlane/Fastfile +++ b/fastlane/Fastfile @@ -8,7 +8,7 @@ lane :release do |options| if options[:allow_dirty_branch] != true ensure_git_status_clean else - Helper.log.info "Skipping the 'git status clean' check!".yellow + UI.message "Skipping the 'git status clean' check!".yellow end git_pull @@ -23,7 +23,7 @@ lane :release do |options| end currentVersion = version_get_podspec() - Helper.log.info "Current R.swift.Library podspec version is #{currentVersion}" + UI.message "Current R.swift.Library podspec version is #{currentVersion}" bumpType = prompt(text: "What kind of release is this? (major/minor/patch/custom)".green, boolean: false, ci_input: "") isPrerelease = false