diff --git a/CHANGELOG.md b/CHANGELOG.md index 218a9222..da68aaae 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,17 @@ +# 7.1.0-fac-beta-1.1.0 +- Beta release supporting Firebase App Check tokens used +to establish your application's integrity while signing in with Google +- Adds privacy manifest support released in [v7.1.0](https://github.com/google/GoogleSignIn-iOS/releases/tag/7.1.0) +- Internal + - Check integration test for presubmit instruction ([#368](https://github.com/google/GoogleSignIn-iOS/pull/368)) + - Test skip integration key ([#374](https://github.com/google/GoogleSignIn-iOS/pull/374)) + - Add Privacy Manifest to App Check Release Branch ([#392](https://github.com/google/GoogleSignIn-iOS/pull/392)) + - [Add return type to init in GIDFakeFetcherService header](https://github.com/google/GoogleSignIn-iOS/commit/ebf681cac127497da55c932cb5bbf185971a29e7) + +# 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 + # 7.1.0 - Update to Swift 5.0 in `GoogleSignInSwiftSupport` pod ([#317](https://github.com/google/GoogleSignIn-iOS/pull/317)) - Documentation updates ([#351](https://github.com/google/GoogleSignIn-iOS/pull/351), [#372](https://github.com/google/GoogleSignIn-iOS/pull/372)) diff --git a/GoogleSignIn.podspec b/GoogleSignIn.podspec index 245819d8..4e1c82f1 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-beta-1.0.0' + s.version = '7.1.0-fac-beta-1.1.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/GoogleSignInSwiftSupport.podspec b/GoogleSignInSwiftSupport.podspec index d712e09c..1ea09ee1 100644 --- a/GoogleSignInSwiftSupport.podspec +++ b/GoogleSignInSwiftSupport.podspec @@ -24,7 +24,7 @@ Pod::Spec.new do |s| 'CoreGraphics', 'SwiftUI', ] - s.dependency 'GoogleSignIn', '~> 7.1.0-fac-beta-1.0.0' + s.dependency 'GoogleSignIn', '~> 7.1.0-fac-beta-1.1.0' s.resource_bundles = { 'GoogleSignInSwiftSupport_Privacy' => 'GoogleSignInSwift/Sources/Resources/PrivacyInfo.xcprivacy' } diff --git a/Package.swift b/Package.swift index ae459135..0a24580f 100644 --- a/Package.swift +++ b/Package.swift @@ -17,7 +17,7 @@ import PackageDescription -let googleSignInVersion = "7.1.0-fac-beta-1.0.0" +let googleSignInVersion = "7.1.0-fac-beta-1.1.0" let package = Package( name: "GoogleSignIn",