From 1a7bffabd88fde2e642347b567b56a491689cae2 Mon Sep 17 00:00:00 2001 From: Jay Kim Date: Fri, 24 Jan 2020 10:07:31 -0800 Subject: [PATCH] Release 6.1.4 --- CHANGELOG.md | 4 ++++ Iterable-iOS-AppExtensions.podspec | 2 +- Iterable-iOS-SDK.podspec | 2 +- README.md | 2 +- swift-sdk/IterableAPI.swift | 2 +- 5 files changed, 8 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bade88e32..1e0830298 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/). +## 6.1.4 +#### Fixed +- Fixed the function signature of the `updateSubscriptions` call (thanks, Conor!) + ## 6.1.3 #### Changed - Converted a log message variable to be interpreted as an UTF8 String (thanks, chunkyguy!) diff --git a/Iterable-iOS-AppExtensions.podspec b/Iterable-iOS-AppExtensions.podspec index 8f4bf0fbb..840f926be 100644 --- a/Iterable-iOS-AppExtensions.podspec +++ b/Iterable-iOS-AppExtensions.podspec @@ -17,7 +17,7 @@ Pod::Spec.new do |s| s.name = "Iterable-iOS-AppExtensions" s.module_name = "IterableAppExtensions" - s.version = "6.1.3" + s.version = "6.1.4" s.summary = "App Extensions for Iterable SDK" s.description = <<-DESC diff --git a/Iterable-iOS-SDK.podspec b/Iterable-iOS-SDK.podspec index 98c90829b..3ceae856f 100644 --- a/Iterable-iOS-SDK.podspec +++ b/Iterable-iOS-SDK.podspec @@ -17,7 +17,7 @@ Pod::Spec.new do |s| s.name = "Iterable-iOS-SDK" s.module_name = "IterableSDK" - s.version = "6.1.3" + s.version = "6.1.4" s.summary = "Iterable's official SDK for iOS" s.description = <<-DESC diff --git a/README.md b/README.md index b4368a3f4..e0c4caf31 100644 --- a/README.md +++ b/README.md @@ -29,7 +29,7 @@ directory as your Xcode project. 2. Edit **Cartfile**, adding the following line: ``` - github "Iterable/swift-sdk" ~> 6.1.3 + github "Iterable/swift-sdk" ~> 6.1.4 ``` 3. In the terminal, in the same directory as your **Cartfile**, run the diff --git a/swift-sdk/IterableAPI.swift b/swift-sdk/IterableAPI.swift index 02a8973e0..70b0faf2a 100644 --- a/swift-sdk/IterableAPI.swift +++ b/swift-sdk/IterableAPI.swift @@ -12,7 +12,7 @@ import Foundation @objcMembers public final class IterableAPI : NSObject { // Current SDK Version. - static let sdkVersion = "6.1.3" + static let sdkVersion = "6.1.4" // MARK: Initialization /// You should call this method and not call the init method directly.