diff --git a/.github/workflows/integration_tests.yml b/.github/workflows/integration_tests.yml index 92ae37eb..0a925f61 100644 --- a/.github/workflows/integration_tests.yml +++ b/.github/workflows/integration_tests.yml @@ -12,7 +12,7 @@ jobs: swift-button-functional-test: runs-on: macOS-12 # Don't run if triggered by a PR from a fork since our Secrets won't be provided to the runner. - if: "!github.event.pull_request.head.repo.fork" + if: false # Disabled per issue 367; add back here check for PRs from forks defaults: run: working-directory: Samples/Swift/DaysUntilBirthday diff --git a/CHANGELOG.md b/CHANGELOG.md index 5aced09d..dc6f785b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +# 7.1.0-fac-beta-1.0.0 +- Beta release supporting Firebase App Check tokens used +to establish your application's integrity while signing in with Google +- Internal + - Update SignInSample Podfile minimum iOS version ([#355](https://github.com/google/GoogleSignIn-iOS/pull/355)) + - Update AppCheckExample unit test target to pass during continuous integration ([#356](https://github.com/google/GoogleSignIn-iOS/pull/356)) + # 7.1.0-fac-eap-1.0.0 - Early Access Program (EAP) release supporting Firebase App Check tokens used to establish your application's integrity while signing in with Google diff --git a/GoogleSignIn.podspec b/GoogleSignIn.podspec index a5ddf6bc..8ea9fe03 100644 --- a/GoogleSignIn.podspec +++ b/GoogleSignIn.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = 'GoogleSignIn' - s.version = '7.1.0-fac-eap-1.0.0' + s.version = '7.1.0-fac-beta-1.0.0' s.summary = 'Enables iOS apps to sign in with Google.' s.description = <<-DESC The Google Sign-In SDK allows users to sign in with their Google account from third-party apps. diff --git a/Package.swift b/Package.swift index 0c686efc..02f76571 100644 --- a/Package.swift +++ b/Package.swift @@ -17,7 +17,7 @@ import PackageDescription -let googleSignInVersion = "7.1.0-fac-eap-1.0.0" +let googleSignInVersion = "7.1.0-fac-beta-1.0.0" let package = Package( name: "GoogleSignIn", diff --git a/Samples/ObjC/SignInSample/SignInSample.xcodeproj/project.pbxproj b/Samples/ObjC/SignInSample/SignInSample.xcodeproj/project.pbxproj index cff9da77..0ffd550e 100644 --- a/Samples/ObjC/SignInSample/SignInSample.xcodeproj/project.pbxproj +++ b/Samples/ObjC/SignInSample/SignInSample.xcodeproj/project.pbxproj @@ -3,7 +3,7 @@ archiveVersion = 1; classes = { }; - objectVersion = 52; + objectVersion = 54; objects = { /* Begin PBXBuildFile section */ @@ -459,6 +459,7 @@ .., ); INFOPLIST_FILE = "$(SRCROOT)/SignInSample-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", @@ -477,6 +478,7 @@ .., ); INFOPLIST_FILE = "$(SRCROOT)/SignInSample-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", diff --git a/Samples/ObjC/SignInSample/SignInSampleForPod.xcodeproj/project.pbxproj b/Samples/ObjC/SignInSample/SignInSampleForPod.xcodeproj/project.pbxproj index ce6f4817..f53071cc 100644 --- a/Samples/ObjC/SignInSample/SignInSampleForPod.xcodeproj/project.pbxproj +++ b/Samples/ObjC/SignInSample/SignInSampleForPod.xcodeproj/project.pbxproj @@ -510,7 +510,7 @@ CLANG_ENABLE_MODULES = YES; DEVELOPMENT_TEAM = ""; INFOPLIST_FILE = "$(SRCROOT)/SignInSample-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 10.0; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; PRODUCT_BUNDLE_IDENTIFIER = com.google.SignInSample; PRODUCT_NAME = SignInSample; @@ -527,7 +527,7 @@ CLANG_ENABLE_MODULES = YES; DEVELOPMENT_TEAM = ""; INFOPLIST_FILE = "$(SRCROOT)/SignInSample-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 10.0; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; PRODUCT_BUNDLE_IDENTIFIER = com.google.SignInSample; PRODUCT_NAME = SignInSample;