Skip to content
This repository has been archived by the owner on Jul 22, 2020. It is now read-only.

Commit

Permalink
Prepare for 4.4.3 fixes nil onFailure call in sendRequest
Browse files Browse the repository at this point in the history
  • Loading branch information
davidtruong committed Nov 14, 2017
1 parent 49e3455 commit 9e1656a
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Artifacts/include/Iterable-iOS-SDK/IterableAPI.h
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ typedef void (^OnSuccessHandler)(NSDictionary *data);
/**
The prototype for the completion handler block that gets called when an Iterable call fails
*/
typedef void (^OnFailureHandler)(NSString *reason, NSData *data);
typedef void (^OnFailureHandler)(NSString *reason, NSData *_Nullable data);

/**
Enum representing push platform; apple push notification service, production vs sandbox
Expand Down
Binary file modified Artifacts/libIterable-iOS-SDK.a
Binary file not shown.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,10 @@ This project adheres to [Semantic Versioning](http://semver.org/).
#### Fixed
- nothing yet

## [4.4.3](https://github.com/Iterable/iterable-ios-sdk/releases/tag/4.4.3)
#### Fixed
- Fixes nil data in sendRequest onFailureHandler

## [4.4.2](https://github.com/Iterable/iterable-ios-sdk/releases/tag/4.4.2)
#### Fixed
- Fixes outdated artifacts file for `updateSubscriptions` release
Expand Down
2 changes: 1 addition & 1 deletion IterableSDK.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Pod::Spec.new do |s|
#

s.name = "IterableSDK"
s.version = "4.4.2"
s.version = "4.4.3"
s.summary = "Iterable's official SDK for iOS"

s.description = <<-DESC
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[![CocoaPods](https://img.shields.io/cocoapods/v/IterableSDK.svg?style=flat)](https://cocoapods.org/pods/IterableSDK)
[![License](https://img.shields.io/cocoapods/l/IterableSDK.svg?style=flat)](https://opensource.org/licenses/MIT)
[![Docs](https://img.shields.io/cocoapods/metrics/doc-percent/IterableSDK.svg?style=flat)](http://cocoadocs.org/docsets/IterableSDK/4.4.2/)
[![Docs](https://img.shields.io/cocoapods/metrics/doc-percent/IterableSDK.svg?style=flat)](http://cocoadocs.org/docsets/IterableSDK/4.4.3/)

# Iterable iOS SDK

Expand Down

0 comments on commit 9e1656a

Please sign in to comment.