diff --git a/CHANGELOG.md b/CHANGELOG.md index 22060f40d..91eeb8d0a 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.2.8 +#### Added +- In-app messages now get "pre-loaded" with a timer (or until the in-app loads) to mitigate seeing the loading of the message + +#### Fixed +- The JSON payload is now checked to be a valid JSON object before serialization +- Some classes that were intended for internal framework usage only have been assigned proper permission levels (thanks, made2k!) +- The root view controller is now correctly found on projects that are newly created in iOS 13 +- `nil` is properly returned when deep linking encounters an error + ## 6.2.7 #### Added - Added internal `deviceAttributes` field for compatibility diff --git a/Iterable-iOS-AppExtensions.podspec b/Iterable-iOS-AppExtensions.podspec index 3218278d9..3a3cfa5a3 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.2.7" + s.version = "6.2.8" s.summary = "App Extensions for Iterable SDK" s.description = <<-DESC diff --git a/Iterable-iOS-SDK.podspec b/Iterable-iOS-SDK.podspec index 605adb3ed..55b8971d3 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.2.7" + s.version = "6.2.8" s.summary = "Iterable's official SDK for iOS" s.description = <<-DESC diff --git a/swift-sdk/IterableAPI.swift b/swift-sdk/IterableAPI.swift index abd3c15ca..1d99d8525 100644 --- a/swift-sdk/IterableAPI.swift +++ b/swift-sdk/IterableAPI.swift @@ -9,7 +9,7 @@ import UIKit @objcMembers public final class IterableAPI: NSObject { // Current SDK Version. - public static let sdkVersion = "6.2.7" + public static let sdkVersion = "6.2.8" // MARK: Initialization