Skip to content

Commit

Permalink
Merge pull request #405 from Iterable/MOB-2210-6.2.12-GA
Browse files Browse the repository at this point in the history
6.2.12 GA release
  • Loading branch information
roninopf committed Oct 13, 2020
2 parents 71480c5 + 41dce88 commit 6ec4121
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 5 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Expand Up @@ -2,6 +2,14 @@
All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).

## 6.2.12
#### Added
- Added authentication support

## 6.2.12-beta1
#### Added
- Added authentication support

## 6.2.11
#### Added
- Xcode 12 and iOS 14 support.
Expand Down
2 changes: 1 addition & 1 deletion Iterable-iOS-AppExtensions.podspec
@@ -1,7 +1,7 @@
Pod::Spec.new do |s|
s.name = "Iterable-iOS-AppExtensions"
s.module_name = "IterableAppExtensions"
s.version = "6.2.11"
s.version = "6.2.12"
s.summary = "App Extensions for Iterable SDK"

s.description = <<-DESC
Expand Down
2 changes: 1 addition & 1 deletion Iterable-iOS-SDK.podspec
@@ -1,7 +1,7 @@
Pod::Spec.new do |s|
s.name = "Iterable-iOS-SDK"
s.module_name = "IterableSDK"
s.version = "6.2.11"
s.version = "6.2.12"
s.summary = "Iterable's official SDK for iOS"

s.description = <<-DESC
Expand Down
4 changes: 2 additions & 2 deletions swift-sdk/Internal/AuthManager.swift
Expand Up @@ -42,7 +42,7 @@ class AuthManager: IterableInternalAuthManagerProtocol {
}

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

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

authToken = retrievedAuthToken
Expand Down
2 changes: 1 addition & 1 deletion swift-sdk/IterableAPI.swift
Expand Up @@ -9,7 +9,7 @@ import UIKit

@objcMembers public final class IterableAPI: NSObject {
/// The current SDK version
public static let sdkVersion = "6.2.11"
public static let sdkVersion = "6.2.12"

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

0 comments on commit 6ec4121

Please sign in to comment.