Skip to content

Commit 6ec4121

Browse files
authored
Merge pull request #405 from Iterable/MOB-2210-6.2.12-GA
6.2.12 GA release
2 parents 71480c5 + 41dce88 commit 6ec4121

File tree

5 files changed

+13
-5
lines changed

5 files changed

+13
-5
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22
All notable changes to this project will be documented in this file.
33
This project adheres to [Semantic Versioning](http://semver.org/).
44

5+
## 6.2.12
6+
#### Added
7+
- Added authentication support
8+
9+
## 6.2.12-beta1
10+
#### Added
11+
- Added authentication support
12+
513
## 6.2.11
614
#### Added
715
- Xcode 12 and iOS 14 support.

Iterable-iOS-AppExtensions.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Pod::Spec.new do |s|
22
s.name = "Iterable-iOS-AppExtensions"
33
s.module_name = "IterableAppExtensions"
4-
s.version = "6.2.11"
4+
s.version = "6.2.12"
55
s.summary = "App Extensions for Iterable SDK"
66

77
s.description = <<-DESC

Iterable-iOS-SDK.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Pod::Spec.new do |s|
22
s.name = "Iterable-iOS-SDK"
33
s.module_name = "IterableSDK"
4-
s.version = "6.2.11"
4+
s.version = "6.2.12"
55
s.summary = "Iterable's official SDK for iOS"
66

77
s.description = <<-DESC

swift-sdk/Internal/AuthManager.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ class AuthManager: IterableInternalAuthManagerProtocol {
4242
}
4343

4444
// @objc attribute only needed for the pre-iOS 10 Timer constructor in queueAuthTokenExpirationRefresh
45-
@objc func requestNewAuthToken(hasFailedPriorAuth: Bool = false, onSuccess: ((String?) -> Void)? = nil) {
45+
@objc func requestNewAuthToken(hasFailedPriorAuth: Bool = false, onSuccess: AuthTokenRetrievalHandler? = nil) {
4646
guard !pendingAuth else {
4747
return
4848
}
@@ -92,7 +92,7 @@ class AuthManager: IterableInternalAuthManagerProtocol {
9292
queueAuthTokenExpirationRefresh(authToken)
9393
}
9494

95-
private func onAuthTokenReceived(retrievedAuthToken: String?, onSuccess: ((String?) -> Void)?) {
95+
private func onAuthTokenReceived(retrievedAuthToken: String?, onSuccess: AuthTokenRetrievalHandler?) {
9696
pendingAuth = false
9797

9898
authToken = retrievedAuthToken

swift-sdk/IterableAPI.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import UIKit
99

1010
@objcMembers public final class IterableAPI: NSObject {
1111
/// The current SDK version
12-
public static let sdkVersion = "6.2.11"
12+
public static let sdkVersion = "6.2.12"
1313

1414
/// The email of the logged in user that this IterableAPI is using
1515
public static var email: String? {

0 commit comments

Comments
 (0)