From 0c3cdd2602d9f87a87a78d242b08fbd303be24ea Mon Sep 17 00:00:00 2001 From: OSBotify <76178356+OSBotify@users.noreply.github.com> Date: Tue, 31 Aug 2021 16:13:53 -0700 Subject: [PATCH 1/2] Merge pull request #4965 from Expensify/version-BUILD-fae6e0edac46e761a4b0cfccf9e4968c572f0c4b (cherry picked from commit 8ac47ef1e89cef66e6eaf8a97d9d8f4e74203254) --- android/app/build.gradle | 4 ++-- ios/NewExpensify/Info.plist | 2 +- ios/NewExpensifyTests/Info.plist | 2 +- package-lock.json | 2 +- package.json | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/android/app/build.gradle b/android/app/build.gradle index 93efc74f229..72b78f82b4b 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -150,8 +150,8 @@ android { minSdkVersion rootProject.ext.minSdkVersion targetSdkVersion rootProject.ext.targetSdkVersion multiDexEnabled rootProject.ext.multiDexEnabled - versionCode 1001009000 - versionName "1.0.90-0" + versionCode 1001009001 + versionName "1.0.90-1" } splits { abi { diff --git a/ios/NewExpensify/Info.plist b/ios/NewExpensify/Info.plist index e47d5a67cd3..46f154e3e8d 100644 --- a/ios/NewExpensify/Info.plist +++ b/ios/NewExpensify/Info.plist @@ -30,7 +30,7 @@ CFBundleVersion - 1.0.90.0 + 1.0.90.1 ITSAppUsesNonExemptEncryption LSApplicationQueriesSchemes diff --git a/ios/NewExpensifyTests/Info.plist b/ios/NewExpensifyTests/Info.plist index 9057f029a1d..bb217905e4c 100644 --- a/ios/NewExpensifyTests/Info.plist +++ b/ios/NewExpensifyTests/Info.plist @@ -19,6 +19,6 @@ CFBundleSignature ???? CFBundleVersion - 1.0.90.0 + 1.0.90.1 diff --git a/package-lock.json b/package-lock.json index 7c5a9b63fa6..c59f7119fb1 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "new.expensify", - "version": "1.0.90-0", + "version": "1.0.90-1", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 6b36abd357f..968d4f68664 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "new.expensify", - "version": "1.0.90-0", + "version": "1.0.90-1", "author": "Expensify, Inc.", "homepage": "https://new.expensify.com", "description": "New Expensify is the next generation of Expensify: a reimagination of payments based atop a foundation of chat.", From 68de7a1ff3fa7aba284593428d8b7e8c625e2b12 Mon Sep 17 00:00:00 2001 From: Andrew Gable Date: Tue, 31 Aug 2021 16:11:43 -0700 Subject: [PATCH 2/2] Merge pull request #4961 from Expensify/andrew-distribute-external Allow builds to distribute to external testers (cherry picked from commit fae6e0edac46e761a4b0cfccf9e4968c572f0c4b) --- fastlane/Fastfile | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) diff --git a/fastlane/Fastfile b/fastlane/Fastfile index 89484fa1022..f86243f4988 100644 --- a/fastlane/Fastfile +++ b/fastlane/Fastfile @@ -113,15 +113,8 @@ platform :ios do upload_to_testflight( api_key_path: "./ios/ios-fastlane-json-key.json", - # TODO: Remove skip_waiting_for_build_processing when https://github.com/fastlane/fastlane/issues/18408 is resolved - # See: https://github.com/Expensify/App/pull/1984 for more information - skip_waiting_for_build_processing: true, - # TODO: Set distribute_external back to true when https://github.com/fastlane/fastlane/issues/18408 is resolved - # See: https://github.com/Expensify/App/pull/1984 for more information - distribute_external: false, - # TODO: Set reject_build_waiting_for_review back to true when https://github.com/fastlane/fastlane/issues/18408 is resolved - # See: https://github.com/Expensify/App/pull/1984 for more information - reject_build_waiting_for_review: false, + distribute_external: true, + notify_external_testers: true, changelog: "Thank you for beta testing New Expensify, this version includes bug fixes and improvements.", groups: ["Beta"], demo_account_required: true,