Skip to content

Commit 1cbd51a

Browse files
authored
Merge pull request #861 from Iterable/evan/MOB-10114-6.6.0-beta
[MOB-10114] prepares for AUA beta release
2 parents 709a05e + 2413ab2 commit 1cbd51a

File tree

4 files changed

+12
-3
lines changed

4 files changed

+12
-3
lines changed

CHANGELOG.md

+9
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,15 @@
33
All notable changes to this project will be documented in this file.
44
This project adheres to [Semantic Versioning](http://semver.org/).
55

6+
## [6.6.0-beta1]
7+
8+
- This release includes initial support for Anonymous user activation, a feature that allows marketers to convert valuable visitors into customers. With this feature, the SDK can:
9+
- Fetch anonymous profile creation criteria from your Iterable project, and then automatically create Iterable user profiles for anonymous users who meet these criteria.
10+
- Save information about a user's previous interactions with your application to their anonymous profile, after it's created.
11+
- Display personalized messages for anonymous users (in-app, push, and embedded messages).
12+
- Merge anonymous profiles into an existing, known user profiles (when needed).
13+
- Anonymous user activation is currently in private beta. If you'd like to learn more about it or discuss using it, talk to your Iterable customer success manager (who can also provide detailed documentation).
14+
615
## [6.5.7]
716
### Fixed
817
- Fixed deeplink re-routing issue where delegate would only return `false` value. Thanks to @scottasoutherland :)

Iterable-iOS-AppExtensions.podspec

+1-1
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.5.7"
4+
s.version = "6.6.0-beta1"
55
s.summary = "App Extensions for Iterable SDK"
66

77
s.description = <<-DESC

Iterable-iOS-SDK.podspec

+1-1
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.5.7"
4+
s.version = "6.6.0-beta1"
55
s.summary = "Iterable's official SDK for iOS"
66

77
s.description = <<-DESC

swift-sdk/IterableAPI.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import UIKit
77

88
@objcMembers public final class IterableAPI: NSObject {
99
/// The current SDK version
10-
public static let sdkVersion = "6.5.7"
10+
public static let sdkVersion = "6.6.0-beta1"
1111

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

0 commit comments

Comments
 (0)