From d79901380a8d91b475f47f1ea4f1b09ac9899a22 Mon Sep 17 00:00:00 2001 From: Jay Kim Date: Thu, 20 Apr 2023 15:12:23 -0700 Subject: [PATCH] version 6.4.13 updates --- CHANGELOG.md | 10 ++++++++++ Iterable-iOS-AppExtensions.podspec | 2 +- Iterable-iOS-SDK.podspec | 2 +- swift-sdk/IterableAPI.swift | 2 +- 4 files changed, 13 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 920e0d63f..7be5eeb6d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,16 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/). +## 6.4.13 +### Added +- `ITBNotificationServiceExtension` has a new optional delegate in the scenario of wanting to receive and pass along push information (e.g. Firebase) + +### Changed +- The behavior of `lastPushPayload` now matches that of the Android SDK in being purely in memory and will now not count the payload of a silent push + +### Fixed +- The `itbl_inapp.json` file generated from in-app messaging has been relocated to the correct spot + ## 6.4.12 ### Added - Added a new function to `IterableAPI` to get the currently set authentication token diff --git a/Iterable-iOS-AppExtensions.podspec b/Iterable-iOS-AppExtensions.podspec index 9756bdff8..c8f405671 100644 --- a/Iterable-iOS-AppExtensions.podspec +++ b/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.12" + s.version = "6.4.13" s.summary = "App Extensions for Iterable SDK" s.description = <<-DESC diff --git a/Iterable-iOS-SDK.podspec b/Iterable-iOS-SDK.podspec index 793779921..c3ca66e47 100644 --- a/Iterable-iOS-SDK.podspec +++ b/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.12" + s.version = "6.4.13" s.summary = "Iterable's official SDK for iOS" s.description = <<-DESC diff --git a/swift-sdk/IterableAPI.swift b/swift-sdk/IterableAPI.swift index 7dc73a0eb..6e49c64bb 100644 --- a/swift-sdk/IterableAPI.swift +++ b/swift-sdk/IterableAPI.swift @@ -8,7 +8,7 @@ import UIKit @objcMembers public final class IterableAPI: NSObject { /// The current SDK version - public static let sdkVersion = "6.4.12" + public static let sdkVersion = "6.4.13" /// The email of the logged in user that this IterableAPI is using public static var email: String? {