Skip to content

Commit ef4811d

Browse files
authored
Merge pull request #614 from Iterable/MOB-5940-version-6.4.12
[MOB-5940] version 6.4.12
2 parents 7972f97 + 972f474 commit ef4811d

File tree

4 files changed

+16
-7
lines changed

4 files changed

+16
-7
lines changed

CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,17 @@
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.4.12
6+
### Added
7+
- Added a new function to `IterableAPI` to get the currently set authentication token
8+
- Added a new function (`onTokenRegistrationFailed`) to the `IterableAuthDelegate` upon authentication token retrieval failure
9+
10+
### Changed
11+
- Changed `setEmail` and `setUserId` to run through the login process if also sent in an authentication token (and a non-`nil` ID)
12+
13+
### Fixed
14+
- Fixed instances where setting a new authentication token for a user failed
15+
516
## 6.4.11
617
### Fixed
718
- Fixed so that `AuthManager` clears the previous refresh timer before setting a new one (thanks, @cranberyxl!)

Iterable-iOS-AppExtensions.podspec

+2-3
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.4.11"
4+
s.version = "6.4.12"
55
s.summary = "App Extensions for Iterable SDK"
66

77
s.description = <<-DESC
@@ -10,8 +10,7 @@ Pod::Spec.new do |s|
1010

1111
s.homepage = "https://github.com/Iterable/swift-sdk.git"
1212
s.license = "MIT"
13-
s.author = { "Tapash Majumder" => "[email protected]",
14-
"Jay Kim" => "[email protected]" }
13+
s.author = { "Jay Kim" => "[email protected]" }
1514

1615
s.platform = :ios, "10.0"
1716
s.source = { :git => "https://github.com/Iterable/swift-sdk.git", :tag => s.version }

Iterable-iOS-SDK.podspec

+2-3
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.4.11"
4+
s.version = "6.4.12"
55
s.summary = "Iterable's official SDK for iOS"
66

77
s.description = <<-DESC
@@ -10,8 +10,7 @@ Pod::Spec.new do |s|
1010

1111
s.homepage = "https://github.com/Iterable/swift-sdk.git"
1212
s.license = "MIT"
13-
s.author = { "Tapash Majumder" => "[email protected]",
14-
"Jay Kim" => "[email protected]" }
13+
s.author = { "Jay Kim" => "[email protected]" }
1514

1615
s.platform = :ios, "10.0"
1716
s.source = { :git => "https://github.com/Iterable/swift-sdk.git", :tag => s.version }

swift-sdk/IterableAPI.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import UIKit
88
@objcMembers
99
public final class IterableAPI: NSObject {
1010
/// The current SDK version
11-
public static let sdkVersion = "6.4.11"
11+
public static let sdkVersion = "6.4.12"
1212

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

0 commit comments

Comments
 (0)