Skip to content

Commit e0a5ba4

Browse files
authored
Prepare for AppCheck beta release (#366)
1 parent 9077ff6 commit e0a5ba4

File tree

6 files changed

+15
-6
lines changed

6 files changed

+15
-6
lines changed

.github/workflows/integration_tests.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
swift-button-functional-test:
1313
runs-on: macOS-12
1414
# Don't run if triggered by a PR from a fork since our Secrets won't be provided to the runner.
15-
if: "!github.event.pull_request.head.repo.fork"
15+
if: false # Disabled per issue 367; add back here check for PRs from forks
1616
defaults:
1717
run:
1818
working-directory: Samples/Swift/DaysUntilBirthday

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
# 7.1.0-fac-beta-1.0.0
2+
- Beta release supporting Firebase App Check tokens used
3+
to establish your application's integrity while signing in with Google
4+
- Internal
5+
- Update SignInSample Podfile minimum iOS version ([#355](https://github.com/google/GoogleSignIn-iOS/pull/355))
6+
- Update AppCheckExample unit test target to pass during continuous integration ([#356](https://github.com/google/GoogleSignIn-iOS/pull/356))
7+
18
# 7.1.0-fac-eap-1.0.0
29
- Early Access Program (EAP) release supporting Firebase App Check tokens used
310
to establish your application's integrity while signing in with Google

GoogleSignIn.podspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = 'GoogleSignIn'
3-
s.version = '7.1.0-fac-eap-1.0.0'
3+
s.version = '7.1.0-fac-beta-1.0.0'
44
s.summary = 'Enables iOS apps to sign in with Google.'
55
s.description = <<-DESC
66
The Google Sign-In SDK allows users to sign in with their Google account from third-party apps.

Package.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
import PackageDescription
1919

20-
let googleSignInVersion = "7.1.0-fac-eap-1.0.0"
20+
let googleSignInVersion = "7.1.0-fac-beta-1.0.0"
2121

2222
let package = Package(
2323
name: "GoogleSignIn",

Samples/ObjC/SignInSample/SignInSample.xcodeproj/project.pbxproj

+3-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
archiveVersion = 1;
44
classes = {
55
};
6-
objectVersion = 52;
6+
objectVersion = 54;
77
objects = {
88

99
/* Begin PBXBuildFile section */
@@ -459,6 +459,7 @@
459459
..,
460460
);
461461
INFOPLIST_FILE = "$(SRCROOT)/SignInSample-Info.plist";
462+
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
462463
LD_RUNPATH_SEARCH_PATHS = (
463464
"$(inherited)",
464465
"@executable_path/Frameworks",
@@ -477,6 +478,7 @@
477478
..,
478479
);
479480
INFOPLIST_FILE = "$(SRCROOT)/SignInSample-Info.plist";
481+
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
480482
LD_RUNPATH_SEARCH_PATHS = (
481483
"$(inherited)",
482484
"@executable_path/Frameworks",

Samples/ObjC/SignInSample/SignInSampleForPod.xcodeproj/project.pbxproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -510,7 +510,7 @@
510510
CLANG_ENABLE_MODULES = YES;
511511
DEVELOPMENT_TEAM = "";
512512
INFOPLIST_FILE = "$(SRCROOT)/SignInSample-Info.plist";
513-
IPHONEOS_DEPLOYMENT_TARGET = 10.0;
513+
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
514514
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
515515
PRODUCT_BUNDLE_IDENTIFIER = com.google.SignInSample;
516516
PRODUCT_NAME = SignInSample;
@@ -527,7 +527,7 @@
527527
CLANG_ENABLE_MODULES = YES;
528528
DEVELOPMENT_TEAM = "";
529529
INFOPLIST_FILE = "$(SRCROOT)/SignInSample-Info.plist";
530-
IPHONEOS_DEPLOYMENT_TARGET = 10.0;
530+
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
531531
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
532532
PRODUCT_BUNDLE_IDENTIFIER = com.google.SignInSample;
533533
PRODUCT_NAME = SignInSample;

0 commit comments

Comments
 (0)