Skip to content

Commit a844684

Browse files
authored
Prep 6.0.1 release (#34)
* Update changelog for 6.0.1 release. * Update Podspec and SPM version strings for 6.0.1 release. * Improve docs for addScopes. * Update 6.0.1 release date. * Add link to related pull request. * Fix formatting.
1 parent 5193a5b commit a844684

4 files changed

Lines changed: 9 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# 6.0.1 (2021-7-21)
2+
- Fixes nested callbacks not being called for signIn and addScopes methods.
3+
([#29](https://github.com/google/GoogleSignIn-iOS/pull/29))
4+
15
# 6.0.0 (2021-7-13)
26
- Google Sign-In for iOS is now open source.
37
- Swift Package Manager support.

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 = '6.0.0'
3+
s.version = '6.0.1'
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.

GoogleSignIn/Sources/Public/GoogleSignIn/GIDSignIn.h

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -126,6 +126,9 @@ typedef void (^GIDDisconnectCallback)(NSError *_Nullable error);
126126

127127
/// Starts an interactive consent flow to add scopes to the current user's grants.
128128
///
129+
/// The callback will be called at the end of this process. If successful, a new `GIDGoogleUser`
130+
/// instance will be returned reflecting the new scopes and saved sign-in state will be updated.
131+
///
129132
/// @param scopes The scopes to ask the user to consent to.
130133
/// @param presentingViewController The view controller used to present `SFSafariViewContoller` on
131134
/// iOS 9 and 10.

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 = "6.0.0"
20+
let googleSignInVersion = "6.0.1"
2121

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

0 commit comments

Comments
 (0)