diff --git a/CHANGELOG.md b/CHANGELOG.md index 7cb60bd99..4bbcc1e2d 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 + +- iOS SDK now includes a new privacy policy file indicating SDK's usage of user data + +### Fixed + +- 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] ### Added 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? {