From b76ad6a78e2f8aa208a3fad450e04e3943ecbec7 Mon Sep 17 00:00:00 2001 From: Evan Greer Date: Tue, 26 Mar 2024 15:20:08 -0600 Subject: [PATCH 1/5] updates changelog --- CHANGELOG.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7cb60bd99..c271f0c38 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/). +## [6.5.1] + +### Added + +- Privacy manifest file which correctly declares how and which user data is tracked [source](https://developer.apple.com/videos/play/wwdc2023/10060/?time=139) + +### Changed + +- Fix to allow auth token generation to occur only when the user is logged in +- Updates logic for notificationsEnabled flag to be more inclusive in case of failures for fetching the current settings + ## [6.5.0] ### Added From e6525901df3f3965291d686219d9ae871d75b17a Mon Sep 17 00:00:00 2001 From: Evan Greer Date: Tue, 26 Mar 2024 15:24:11 -0600 Subject: [PATCH 2/5] updates version number --- Iterable-iOS-AppExtensions.podspec | 2 +- Iterable-iOS-SDK.podspec | 2 +- swift-sdk/IterableAPI.swift | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Iterable-iOS-AppExtensions.podspec b/Iterable-iOS-AppExtensions.podspec index 74ff5abb6..2708b4467 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.5.0" + s.version = "6.5.1" s.summary = "App Extensions for Iterable SDK" s.description = <<-DESC diff --git a/Iterable-iOS-SDK.podspec b/Iterable-iOS-SDK.podspec index 334e07e35..c879ae525 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.5.0" + s.version = "6.5.1" s.summary = "Iterable's official SDK for iOS" s.description = <<-DESC diff --git a/swift-sdk/IterableAPI.swift b/swift-sdk/IterableAPI.swift index cbedba1d7..4c953a50d 100644 --- a/swift-sdk/IterableAPI.swift +++ b/swift-sdk/IterableAPI.swift @@ -7,7 +7,7 @@ import UIKit @objcMembers public final class IterableAPI: NSObject { /// The current SDK version - public static let sdkVersion = "6.5.0" + public static let sdkVersion = "6.5.1" /// The email of the logged in user that this IterableAPI is using public static var email: String? { From 577ae3fe101add6ff5a0612ea49715d931cf980f Mon Sep 17 00:00:00 2001 From: Evan Greer Date: Tue, 26 Mar 2024 15:50:10 -0600 Subject: [PATCH 3/5] updates changelog --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c271f0c38..4c58b77ab 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,7 +7,7 @@ This project adheres to [Semantic Versioning](http://semver.org/). ### Added -- Privacy manifest file which correctly declares how and which user data is tracked [source](https://developer.apple.com/videos/play/wwdc2023/10060/?time=139) +- iOS SDK now includes a new privacy policy file indicating SDK's usage of user data. ### Changed From 51d5a10019e11467e7c52b084a918c7b22d290dd Mon Sep 17 00:00:00 2001 From: Evan Greer Date: Tue, 26 Mar 2024 15:50:38 -0600 Subject: [PATCH 4/5] updates changelog --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4c58b77ab..050dd09f4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,7 +7,7 @@ This project adheres to [Semantic Versioning](http://semver.org/). ### Added -- iOS SDK now includes a new privacy policy file indicating SDK's usage of user data. +- iOS SDK now includes a new privacy policy file indicating SDK's usage of user data ### Changed From 1f94a616524d83432b4a0a8627ddb9555b5a6aff Mon Sep 17 00:00:00 2001 From: Evan Greer Date: Tue, 26 Mar 2024 16:03:10 -0600 Subject: [PATCH 5/5] updates changelog --- CHANGELOG.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 050dd09f4..4bbcc1e2d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,9 +9,9 @@ This project adheres to [Semantic Versioning](http://semver.org/). - iOS SDK now includes a new privacy policy file indicating SDK's usage of user data -### Changed +### Fixed -- Fix to allow auth token generation to occur only when the user is logged in +- Fixed an issue where AuthManager's onTokenRequested would get called without user logged in - Updates logic for notificationsEnabled flag to be more inclusive in case of failures for fetching the current settings ## [6.5.0]