# HG changeset patch # User Dennis Concepción Martín # Date 1627936076 -3600 # Node ID 88caa2e8573b879a737198764e1d4390c85986f9 # Parent e0f1c852b9e0fada8fc73e21cb4b3501e2ce36e4 Fixes increment build number diff -r e0f1c852b9e0 -r 88caa2e8573b Simoleon.xcodeproj/project.xcworkspace/xcuserdata/dennis.xcuserdatad/UserInterfaceState.xcuserstate Binary file Simoleon.xcodeproj/project.xcworkspace/xcuserdata/dennis.xcuserdatad/UserInterfaceState.xcuserstate has changed diff -r e0f1c852b9e0 -r 88caa2e8573b SimoleonTests/Info.plist --- a/SimoleonTests/Info.plist Mon Aug 02 18:18:24 2021 +0100 +++ b/SimoleonTests/Info.plist Mon Aug 02 21:27:56 2021 +0100 @@ -17,6 +17,6 @@ CFBundleShortVersionString 1.0 CFBundleVersion - 1 + 2 diff -r e0f1c852b9e0 -r 88caa2e8573b SimoleonUITests/Info.plist --- a/SimoleonUITests/Info.plist Mon Aug 02 18:18:24 2021 +0100 +++ b/SimoleonUITests/Info.plist Mon Aug 02 21:27:56 2021 +0100 @@ -17,6 +17,6 @@ CFBundleShortVersionString 1.0 CFBundleVersion - 1 + 2 diff -r e0f1c852b9e0 -r 88caa2e8573b fastlane/Fastfile --- a/fastlane/Fastfile Mon Aug 02 18:18:24 2021 +0100 +++ b/fastlane/Fastfile Mon Aug 02 21:27:56 2021 +0100 @@ -18,7 +18,13 @@ platform :ios do desc "Push a new beta build to TestFlight" lane :beta do - increment_build_number(xcodeproj: "Simoleon.xcodeproj") + increment_build_number( + build_number: latest_testflight_build_number( + initial_build_number: 1, + version: get_version_number(xcodeproj: "Simoleon.xcodeproj"), + live: false + ) + 1, + ) build_app(scheme: "Simoleon") upload_to_testflight end