Skip to content

Commit 08d8dce

Browse files
authored
Release 9.2.0 (#605)
1 parent 521e246 commit 08d8dce

5 files changed

Lines changed: 19 additions & 7 deletions

File tree

CHANGELOG.md

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
1-
# Unreleased
2-
- Update the AppAuth-iOS dependency to version 2.1.0 ([#954](https://github.com/openid/AppAuth-iOS/pull/954), [#955](https://github.com/openid/AppAuth-iOS/pull/955))
1+
# 9.2.0
2+
- Expose the refresh token expiration date ([#577](https://github.com/google/GoogleSignIn-iOS/pull/577))
3+
- Support requesting the `amr` (Authentication Methods References) claim ([#600](https://github.com/google/GoogleSignIn-iOS/pull/600))
4+
- Remove keychain entries on a fresh install ([#567](https://github.com/google/GoogleSignIn-iOS/pull/567))
5+
- Update the AppAuth-iOS dependency minimum to 2.1.0 ([#603](https://github.com/google/GoogleSignIn-iOS/pull/603))
6+
- Fix optional bundle handling for localized strings ([#373](https://github.com/google/GoogleSignIn-iOS/pull/373))
7+
- Include all public headers unconditionally in the umbrella header ([#595](https://github.com/google/GoogleSignIn-iOS/pull/595))
8+
- Move `GIDSignInButton` import outside of conditional compilation ([#591](https://github.com/google/GoogleSignIn-iOS/pull/591))
9+
- Internal
10+
- Fix Swift Package Manager deprecation warnings ([#579](https://github.com/google/GoogleSignIn-iOS/pull/579))
11+
- Improve doc comment for `GIDSignInButtonStyle` ([#204](https://github.com/google/GoogleSignIn-iOS/pull/204))
12+
- Resolve unassigned child warning in the `AppIcon` asset catalog ([#348](https://github.com/google/GoogleSignIn-iOS/pull/348))
13+
- Refactor GitHub Actions workflow ([#580](https://github.com/google/GoogleSignIn-iOS/pull/580))
14+
- Upgrade GitHub Actions to the latest versions for Node 24 compatibility ([#592](https://github.com/google/GoogleSignIn-iOS/pull/592), [#593](https://github.com/google/GoogleSignIn-iOS/pull/593))
315

416
# 9.1.0
517
- Allow requesting `claims` (currently, only `auth_time`) via [Sign-in methods](https://github.com/google/GoogleSignIn-iOS/blob/gandhiakshat/update-changelog-for-9.1.0-release/GoogleSignIn/Sources/Public/GoogleSignIn/GIDSignIn.h#L240) ([#550](https://github.com/google/GoogleSignIn-iOS/pull/550), [#552](https://github.com/google/GoogleSignIn-iOS/pull/552), [#553](https://github.com/google/GoogleSignIn-iOS/pull/553), [#569](https://github.com/google/GoogleSignIn-iOS/pull/569))

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 = '9.1.0'
3+
s.version = '9.2.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 = '9.1.0'
3+
s.version = '9.2.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', '~> 9.0'
27+
s.dependency 'GoogleSignIn', '~> 9.2'
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 = "9.1.0"
20+
let googleSignInVersion = "9.2.0"
2121

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

Package@swift-5.5.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 = "9.1.0"
20+
let googleSignInVersion = "9.2.0"
2121

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

0 commit comments

Comments
 (0)