Skip to content

Commit

Permalink
Merge pull request #614 from Iterable/MOB-5940-version-6.4.12
Browse files Browse the repository at this point in the history
[MOB-5940] version 6.4.12
  • Loading branch information
roninopf committed Mar 28, 2023
2 parents 7972f97 + 972f474 commit ef4811d
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 7 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Expand Up @@ -2,6 +2,17 @@
All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).

## 6.4.12
### Added
- Added a new function to `IterableAPI` to get the currently set authentication token
- Added a new function (`onTokenRegistrationFailed`) to the `IterableAuthDelegate` upon authentication token retrieval failure

### Changed
- Changed `setEmail` and `setUserId` to run through the login process if also sent in an authentication token (and a non-`nil` ID)

### Fixed
- Fixed instances where setting a new authentication token for a user failed

## 6.4.11
### Fixed
- Fixed so that `AuthManager` clears the previous refresh timer before setting a new one (thanks, @cranberyxl!)
Expand Down
5 changes: 2 additions & 3 deletions 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.4.11"
s.version = "6.4.12"
s.summary = "App Extensions for Iterable SDK"

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

s.homepage = "https://github.com/Iterable/swift-sdk.git"
s.license = "MIT"
s.author = { "Tapash Majumder" => "tapash@iterable.com",
"Jay Kim" => "jay.kim@iterable.com" }
s.author = { "Jay Kim" => "jay.kim@iterable.com" }

s.platform = :ios, "10.0"
s.source = { :git => "https://github.com/Iterable/swift-sdk.git", :tag => s.version }
Expand Down
5 changes: 2 additions & 3 deletions 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.4.11"
s.version = "6.4.12"
s.summary = "Iterable's official SDK for iOS"

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

s.homepage = "https://github.com/Iterable/swift-sdk.git"
s.license = "MIT"
s.author = { "Tapash Majumder" => "tapash@iterable.com",
"Jay Kim" => "jay.kim@iterable.com" }
s.author = { "Jay Kim" => "jay.kim@iterable.com" }

s.platform = :ios, "10.0"
s.source = { :git => "https://github.com/Iterable/swift-sdk.git", :tag => s.version }
Expand Down
2 changes: 1 addition & 1 deletion swift-sdk/IterableAPI.swift
Expand Up @@ -8,7 +8,7 @@ import UIKit
@objcMembers
public final class IterableAPI: NSObject {
/// The current SDK version
public static let sdkVersion = "6.4.11"
public static let sdkVersion = "6.4.12"

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

0 comments on commit ef4811d

Please sign in to comment.