diff --git a/CHANGELOG.md b/CHANGELOG.md index 72e87dd9..180da5dd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ -# Unreleased -- 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)) +# 9.2.0 +- Expose the refresh token expiration date ([#577](https://github.com/google/GoogleSignIn-iOS/pull/577)) +- Support requesting the `amr` (Authentication Methods References) claim ([#600](https://github.com/google/GoogleSignIn-iOS/pull/600)) +- Remove keychain entries on a fresh install ([#567](https://github.com/google/GoogleSignIn-iOS/pull/567)) +- Update the AppAuth-iOS dependency minimum to 2.1.0 ([#603](https://github.com/google/GoogleSignIn-iOS/pull/603)) +- Fix optional bundle handling for localized strings ([#373](https://github.com/google/GoogleSignIn-iOS/pull/373)) +- Include all public headers unconditionally in the umbrella header ([#595](https://github.com/google/GoogleSignIn-iOS/pull/595)) +- Move `GIDSignInButton` import outside of conditional compilation ([#591](https://github.com/google/GoogleSignIn-iOS/pull/591)) +- Internal + - Fix Swift Package Manager deprecation warnings ([#579](https://github.com/google/GoogleSignIn-iOS/pull/579)) + - Improve doc comment for `GIDSignInButtonStyle` ([#204](https://github.com/google/GoogleSignIn-iOS/pull/204)) + - Resolve unassigned child warning in the `AppIcon` asset catalog ([#348](https://github.com/google/GoogleSignIn-iOS/pull/348)) + - Refactor GitHub Actions workflow ([#580](https://github.com/google/GoogleSignIn-iOS/pull/580)) + - 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)) # 9.1.0 - 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)) diff --git a/GoogleSignIn.podspec b/GoogleSignIn.podspec index f74296ee..0056a24c 100644 --- a/GoogleSignIn.podspec +++ b/GoogleSignIn.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = 'GoogleSignIn' - s.version = '9.1.0' + s.version = '9.2.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 c2661dd8..d7a5faa6 100644 --- a/GoogleSignInSwiftSupport.podspec +++ b/GoogleSignInSwiftSupport.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = 'GoogleSignInSwiftSupport' - s.version = '9.1.0' + s.version = '9.2.0' s.swift_version = '5.0' s.summary = 'Adds Swift-focused support for Google Sign-In.' s.description = 'Additional Swift support for the Google Sign-In SDK.' diff --git a/Package.swift b/Package.swift index 6b1cf13e..219d64a0 100644 --- a/Package.swift +++ b/Package.swift @@ -17,7 +17,7 @@ import PackageDescription -let googleSignInVersion = "9.1.0" +let googleSignInVersion = "9.2.0" let package = Package( name: "GoogleSignIn", diff --git a/Package@swift-5.5.swift b/Package@swift-5.5.swift index 44252eef..007e9e90 100644 --- a/Package@swift-5.5.swift +++ b/Package@swift-5.5.swift @@ -17,7 +17,7 @@ import PackageDescription -let googleSignInVersion = "9.1.0" +let googleSignInVersion = "9.2.0" let package = Package( name: "GoogleSignIn",