Skip to content

Commit a7965d1

Browse files
authored
Prepare for 7.1.0 release (#386)
1 parent 5da488f commit a7965d1

File tree

4 files changed

+16
-4
lines changed

4 files changed

+16
-4
lines changed

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
# 7.1.0
2+
- Update to Swift 5.0 in `GoogleSignInSwiftSupport` pod ([#317](https://github.com/google/GoogleSignIn-iOS/pull/317))
3+
- Documentation updates ([#351](https://github.com/google/GoogleSignIn-iOS/pull/351), [#372](https://github.com/google/GoogleSignIn-iOS/pull/372))
4+
- Add Privacy Manifest ([#382](https://github.com/google/GoogleSignIn-iOS/pull/382))
5+
- Internal
6+
- Fix typo in `SFSafariViewController` ([#291](https://github.com/google/GoogleSignIn-iOS/pull/291))
7+
- Fix `OCMock` usage in unit test ([#298](https://github.com/google/GoogleSignIn-iOS/pull/298))
8+
- Use new [delegate protocol](https://github.com/google/GTMAppAuth/pull/224) from GTMAppAuth 4.0.0 ([#299](https://github.com/google/GoogleSignIn-iOS/pull/299))
9+
- Ensure that `completion` is not nil before calling `-[GIDSignIn restorePreviousSignIn:]` ([#301](https://github.com/google/GoogleSignIn-iOS/pull/301))
10+
- Removes `macos-11` runner in GitHub workflows ([#302](https://github.com/google/GoogleSignIn-iOS/pull/302))
11+
- Updates button name reference so UI automation tests pass ([#308](https://github.com/google/GoogleSignIn-iOS/pull/308))
12+
113
# 7.0.0
214
- All configuration can now be provided via your `Info.plist` file. ([#228](https://github.com/google/GoogleSignIn-iOS/pull/228))
315
- Use the following keys in `<key>KEY</key><string>VALUE</string>` pairs to configure the SDK:

GoogleSignIn.podspec

Lines changed: 1 addition & 1 deletion
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.0.0'
3+
s.version = '7.1.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.

GoogleSignInSwiftSupport.podspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = 'GoogleSignInSwiftSupport'
3-
s.version = '7.0.1'
3+
s.version = '7.1.0'
44
s.swift_version = '5.0'
55
s.summary = 'Adds Swift-focused support for Google Sign-In.'
66
s.description = 'Additional Swift support for the Google Sign-In SDK.'
@@ -24,7 +24,7 @@ Pod::Spec.new do |s|
2424
'CoreGraphics',
2525
'SwiftUI',
2626
]
27-
s.dependency 'GoogleSignIn', '~> 7.0'
27+
s.dependency 'GoogleSignIn', '~> 7.1'
2828
s.resource_bundles = {
2929
'GoogleSignInSwiftSupport_Privacy' => 'GoogleSignInSwift/Sources/Resources/PrivacyInfo.xcprivacy'
3030
}

Package.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
import PackageDescription
1919

20-
let googleSignInVersion = "7.0.0"
20+
let googleSignInVersion = "7.1.0"
2121

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

0 commit comments

Comments
 (0)