diff --git a/CHANGELOG.md b/CHANGELOG.md index e405eca89..217b58248 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,13 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/). +## 6.3.0-beta2 +#### Added +- Added callback for initialize method that is used by our React Native SDK. + +#### Fixed +- Fixed how we look up `Resources` folder for Cocoapods. + ## 6.3.0-beta1 #### Added - This beta SDK release includes support for two new Iterable features (both of which are in beta): diff --git a/Iterable-iOS-AppExtensions.podspec b/Iterable-iOS-AppExtensions.podspec index 809c0b97f..e061f55db 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.0-beta1" + s.version = "6.3.0-beta2" s.summary = "App Extensions for Iterable SDK" s.description = <<-DESC diff --git a/Iterable-iOS-SDK.podspec b/Iterable-iOS-SDK.podspec index f432c0351..ab414ab9e 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.0-beta1" + s.version = "6.3.0-beta2" s.summary = "Iterable's official SDK for iOS" s.description = <<-DESC diff --git a/swift-sdk/IterableAPI.swift b/swift-sdk/IterableAPI.swift index 9212c4562..dc829d920 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.0-beta1" + public static let sdkVersion = "6.3.0-beta2" /// The email of the logged in user that this IterableAPI is using public static var email: String? {