Skip to content

Commit 74797da

Browse files
committed
version 6.2.17
1 parent 6b25ff9 commit 74797da

File tree

4 files changed

+12
-7
lines changed

4 files changed

+12
-7
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22
All notable changes to this project will be documented in this file.
33
This project adheres to [Semantic Versioning](http://semver.org/).
44

5+
## 6.2.17
6+
#### Fixed
7+
- Added a call to get in-app messages after a JWT retrieval when setting the user to the Iterable SDK instance
8+
- Fixed passing along deep links from the React Native SDK initialization
9+
510
## 6.2.16
611
#### Fixed
712
- SDK initialization fix for React Native. Push notifications and deep links were not working for React Native when app is not in memory.

Iterable-iOS-AppExtensions.podspec

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Pod::Spec.new do |s|
22
s.name = "Iterable-iOS-AppExtensions"
33
s.module_name = "IterableAppExtensions"
4-
s.version = "6.2.16"
4+
s.version = "6.2.17"
55
s.summary = "App Extensions for Iterable SDK"
66

77
s.description = <<-DESC
@@ -18,8 +18,8 @@ Pod::Spec.new do |s|
1818
s.source_files = "notification-extension/*.{h,m,swift}"
1919

2020
s.pod_target_xcconfig = {
21-
'SWIFT_VERSION' => '5.2'
21+
'SWIFT_VERSION' => '5.3'
2222
}
2323

24-
s.swift_version = '5.2'
24+
s.swift_version = '5.3'
2525
end

Iterable-iOS-SDK.podspec

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Pod::Spec.new do |s|
22
s.name = "Iterable-iOS-SDK"
33
s.module_name = "IterableSDK"
4-
s.version = "6.2.16"
4+
s.version = "6.2.17"
55
s.summary = "Iterable's official SDK for iOS"
66

77
s.description = <<-DESC
@@ -18,10 +18,10 @@ Pod::Spec.new do |s|
1818
s.source_files = "swift-sdk/**/*.{h,m,swift}"
1919

2020
s.pod_target_xcconfig = {
21-
'SWIFT_VERSION' => '5.2'
21+
'SWIFT_VERSION' => '5.3'
2222
}
2323

24-
s.swift_version = '5.2'
24+
s.swift_version = '5.3'
2525

2626
s.resource_bundles = {'Resources' => 'swift-sdk/Resources/**/*.{storyboard,xib,xcassets,xcdatamodeld}' }
2727
end

swift-sdk/IterableAPI.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import UIKit
1010
@objcMembers
1111
public final class IterableAPI: NSObject {
1212
/// The current SDK version
13-
public static let sdkVersion = "6.2.16"
13+
public static let sdkVersion = "6.2.17"
1414

1515
/// The email of the logged in user that this IterableAPI is using
1616
public static var email: String? {

0 commit comments

Comments
 (0)