Skip to content

Commit

Permalink
version 6.2.17
Browse files Browse the repository at this point in the history
  • Loading branch information
roninopf committed Dec 8, 2020
1 parent 6b25ff9 commit 74797da
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 7 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Expand Up @@ -2,6 +2,11 @@
All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).

## 6.2.17
#### Fixed
- Added a call to get in-app messages after a JWT retrieval when setting the user to the Iterable SDK instance
- Fixed passing along deep links from the React Native SDK initialization

## 6.2.16
#### Fixed
- SDK initialization fix for React Native. Push notifications and deep links were not working for React Native when app is not in memory.
Expand Down
6 changes: 3 additions & 3 deletions 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.2.16"
s.version = "6.2.17"
s.summary = "App Extensions for Iterable SDK"

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

s.pod_target_xcconfig = {
'SWIFT_VERSION' => '5.2'
'SWIFT_VERSION' => '5.3'
}

s.swift_version = '5.2'
s.swift_version = '5.3'
end
6 changes: 3 additions & 3 deletions 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.2.16"
s.version = "6.2.17"
s.summary = "Iterable's official SDK for iOS"

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

s.pod_target_xcconfig = {
'SWIFT_VERSION' => '5.2'
'SWIFT_VERSION' => '5.3'
}

s.swift_version = '5.2'
s.swift_version = '5.3'

s.resource_bundles = {'Resources' => 'swift-sdk/Resources/**/*.{storyboard,xib,xcassets,xcdatamodeld}' }
end
2 changes: 1 addition & 1 deletion swift-sdk/IterableAPI.swift
Expand Up @@ -10,7 +10,7 @@ import UIKit
@objcMembers
public final class IterableAPI: NSObject {
/// The current SDK version
public static let sdkVersion = "6.2.16"
public static let sdkVersion = "6.2.17"

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

0 comments on commit 74797da

Please sign in to comment.