Skip to content

Commit

Permalink
Merge pull request #494 from Iterable/MOB-3262-version-6.3.2
Browse files Browse the repository at this point in the history
[MOB-3262] version 6.3.2
  • Loading branch information
roninopf committed Aug 10, 2021
2 parents d6c398f + 42c4d82 commit 01e5cd7
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Expand Up @@ -12,7 +12,7 @@ Pods/

dev.config

Build/
build/
build2/

# needed integration testing
Expand Down
14 changes: 14 additions & 0 deletions CHANGELOG.md
Expand Up @@ -2,6 +2,20 @@
All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).

## 6.3.2
#### Added
- `updateCart` has been added to the SDK
- `dataFields` have been added as a field to `CommerceItem`

#### Removed
- The following calls that were previously marked as deprecated have been removed:
- `IterableAPI.track(inAppOpen messageId: String)`
- `IterableAPI.track(inAppClick messageId: String, buttonURL: String)`
- `IterableAPI.inAppConsume(messageId: String)`
- `IterableAPI.getAndTrack(deeplink webpageURL: URL, callbackBlock: @escaping ITEActionBlock)`
- `IterableAPI.showSystemNotification(withTitle title: String, body: String, button: String?, callbackBlock: ITEActionBlock?)`
- `IterableAPI.showSystemNotification(withTitle title: String, body: String, buttonLeft: String?, buttonRight: String?, callbackBlock: ITEActionBlock?)`

## 6.3.1
#### Added
- The following properties have been added to the `CommerceItem` class:
Expand Down
2 changes: 1 addition & 1 deletion 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.3.1"
s.version = "6.3.2"
s.summary = "App Extensions for Iterable SDK"

s.description = <<-DESC
Expand Down
2 changes: 1 addition & 1 deletion 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.3.1"
s.version = "6.3.2"
s.summary = "Iterable's official SDK for iOS"

s.description = <<-DESC
Expand Down
2 changes: 1 addition & 1 deletion swift-sdk/IterableAPI.swift
Expand Up @@ -8,7 +8,7 @@ import UIKit
@objcMembers
public final class IterableAPI: NSObject {
/// The current SDK version
public static let sdkVersion = "6.3.1"
public static let sdkVersion = "6.3.2"

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

0 comments on commit 01e5cd7

Please sign in to comment.