Skip to content

Commit

Permalink
Prepare for AppCheck beta release (#366)
Browse files Browse the repository at this point in the history
  • Loading branch information
mdmathias authored Feb 10, 2024
1 parent 9077ff6 commit e0a5ba4
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/integration_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion GoogleSignIn.podspec
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
2 changes: 1 addition & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
archiveVersion = 1;
classes = {
};
objectVersion = 52;
objectVersion = 54;
objects = {

/* Begin PBXBuildFile section */
Expand Down Expand Up @@ -459,6 +459,7 @@
..,
);
INFOPLIST_FILE = "$(SRCROOT)/SignInSample-Info.plist";
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
LD_RUNPATH_SEARCH_PATHS = (
"$(inherited)",
"@executable_path/Frameworks",
Expand All @@ -477,6 +478,7 @@
..,
);
INFOPLIST_FILE = "$(SRCROOT)/SignInSample-Info.plist";
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
LD_RUNPATH_SEARCH_PATHS = (
"$(inherited)",
"@executable_path/Frameworks",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand All @@ -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;
Expand Down

0 comments on commit e0a5ba4

Please sign in to comment.