Skip to content

[FIX] Version Number swapped with Build Number #12

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def self.run(params)
# User had no sessions in the last e.g. 30 days, let's get rid of them
remove_tester(current_tester, spaceship_app, params[:dry_run])
counter += 1
elsif params[:oldest_build_allowed] && tester_metrics.installed_cf_bundle_short_version_string.to_i > 0 && tester_metrics.installed_cf_bundle_short_version_string.to_i < params[:oldest_build_allowed]
elsif params[:oldest_build_allowed] && tester_metrics.installed_cf_bundle_version.to_i > 0 && tester_metrics.installed_cf_bundle_version.to_i < params[:oldest_build_allowed]
# User has a build that is too old, let's get rid of them
remove_tester(current_tester, spaceship_app, params[:dry_run])
counter += 1
Expand Down
2 changes: 1 addition & 1 deletion lib/fastlane/plugin/clean_testflight_testers/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module Fastlane
module CleanTestflightTesters
VERSION = "0.3.0"
VERSION = "0.3.1"
end
end