Skip to content

Commit 95eb633

Browse files
Release new version.
1 parent 29434ab commit 95eb633

File tree

4 files changed

+7
-3
lines changed

4 files changed

+7
-3
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
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.1.0
6+
#### Changed
7+
- In this version we have changed the way we use in-app notifications. In-app messages are now being sent asynchronously and your code can control the order and time in which an in-app notification will be shown. There is no need to poll for new in-app messages. Please refer to the **in-app messages** section of README file for how to use in-app messages. If you are already using in-app messages, please refer to [migration guide](https://github.com/iterable/swift-sdk##migrating-from-a-version-prior-to-610) section of README file.
8+
59
## 6.1.0-beta4
610
#### Changed
711
- Url scheme `iterable://` is reserved for Iterable internal actions. In an earlier beta version, the reserved url scheme was `itbl://` but we are not using that now. `itbl://` scheme is only there for backward compatibility and should not be used.

Iterable-iOS-AppExtensions.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Pod::Spec.new do |s|
1717

1818
s.name = "Iterable-iOS-AppExtensions"
1919
s.module_name = "IterableAppExtensions"
20-
s.version = "6.1.0-beta4"
20+
s.version = "6.1.0"
2121
s.summary = "App Extensions for Iterable SDK"
2222

2323
s.description = <<-DESC

Iterable-iOS-SDK.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Pod::Spec.new do |s|
1717

1818
s.name = "Iterable-iOS-SDK"
1919
s.module_name = "IterableSDK"
20-
s.version = "6.1.0-beta4"
20+
s.version = "6.1.0"
2121
s.summary = "Iterable's official SDK for iOS"
2222

2323
s.description = <<-DESC

swift-sdk/IterableAPI.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import Foundation
1212
@objcMembers
1313
public final class IterableAPI : NSObject {
1414
// Current SDK Version.
15-
static let sdkVersion = "6.1.0-beta4"
15+
static let sdkVersion = "6.1.0"
1616

1717
// MARK: Initialization
1818
/// You should call this method and not call the init method directly.

0 commit comments

Comments
 (0)