From efe2f72c0cd306743709df6e6c9659dc92d37a51 Mon Sep 17 00:00:00 2001 From: Jay Kim Date: Thu, 21 Oct 2021 15:02:05 -0700 Subject: [PATCH 1/2] version 6.3.4 --- CHANGELOG.md | 11 +++++++++++ Iterable-iOS-AppExtensions.podspec | 2 +- Iterable-iOS-SDK.podspec | 2 +- swift-sdk/IterableAPI.swift | 2 +- 4 files changed, 14 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 265a2f508..910c5133f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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.3.4 +#### Fixed +- When syncing in-app queues, new messages that already have `read` set to `true` will not spawn an `InAppDelivery` event +- Fixed the alignment of the no messages title on the inbox empty state + +#### Changed +- Wrapped various app extension unsafe classes + +#### Added +- Added ability to not show the unread count badge + ## 6.3.3 #### Changed - CocoaPods targets adding this SDK do not require `use_frameworks!` anymore diff --git a/Iterable-iOS-AppExtensions.podspec b/Iterable-iOS-AppExtensions.podspec index c7a4a7415..55db27692 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.3.3" + s.version = "6.3.4" s.summary = "App Extensions for Iterable SDK" s.description = <<-DESC diff --git a/Iterable-iOS-SDK.podspec b/Iterable-iOS-SDK.podspec index 2744d45c7..a34cdcf41 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.3.3" + s.version = "6.3.4" s.summary = "Iterable's official SDK for iOS" s.description = <<-DESC diff --git a/swift-sdk/IterableAPI.swift b/swift-sdk/IterableAPI.swift index 13e571c35..7f67cd3c9 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.3.3" + public static let sdkVersion = "6.3.4" /// The email of the logged in user that this IterableAPI is using public static var email: String? { From 17a542b78ba787db1ad10844163df7598f71570c Mon Sep 17 00:00:00 2001 From: Jay Kim Date: Thu, 21 Oct 2021 15:05:28 -0700 Subject: [PATCH 2/2] clarification --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 910c5133f..f07dbffed 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,7 +8,7 @@ This project adheres to [Semantic Versioning](http://semver.org/). - Fixed the alignment of the no messages title on the inbox empty state #### Changed -- Wrapped various app extension unsafe classes +- Wrapped various app extension unsafe classes for Xcode 13 compatibility #### Added - Added ability to not show the unread count badge