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

Commit 39e8ab5

Browse files
committed
prepare for 4.1.1
1 parent d397db6 commit 39e8ab5

File tree

5 files changed

+35
-2
lines changed

5 files changed

+35
-2
lines changed

Artifacts/include/Iterable-iOS-SDK/IterableAPI.h

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,20 @@ typedef NS_ENUM(NSInteger, PushServicePlatform) {
9191
*/
9292
- (instancetype) initWithApiKey:(NSString *)apiKey andEmail:(NSString *)email launchOptions:(nullable NSDictionary *)launchOptions;
9393

94+
/*!
95+
@method
96+
97+
@abstract Initializes Iterable with launchOptions
98+
99+
@param apiKey your Iterable apiKey
100+
@param email the email of the user logged in
101+
@param launchOptions launchOptions from application:didFinishLaunchingWithOptions or custom launchOptions
102+
@param useCustomLaunchOptions whether or not to use the custom launchOption without the UIApplicationLaunchOptionsRemoteNotificationKey
103+
104+
@return an instance of IterableAPI
105+
*/
106+
- (instancetype) initWithApiKey:(NSString *)apiKey andEmail:(NSString *)email launchOptions:(nullable NSDictionary *)launchOptions useCustomLaunchOptions:(BOOL)useCustomLaunchOptions;
107+
94108
/*!
95109
@method
96110
@@ -116,6 +130,20 @@ typedef NS_ENUM(NSInteger, PushServicePlatform) {
116130
*/
117131
- (instancetype) initWithApiKey:(NSString *)apiKey andUserId:(NSString *)userId launchOptions:(nullable NSDictionary *)launchOptions;
118132

133+
/*!
134+
@method
135+
136+
@abstract Initializes Iterable with launchOptions
137+
138+
@param apiKey your Iterable apiKey
139+
@param userId the userId of the user logged in
140+
@param launchOptions launchOptions from application:didFinishLaunchingWithOptions or custom launchOptions
141+
@param useCustomLaunchOptions whether or not to use the custom launchOption without the UIApplicationLaunchOptionsRemoteNotificationKey
142+
143+
@return an instance of IterableAPI
144+
*/
145+
- (instancetype) initWithApiKey:(NSString *)apiKey andUserId:(NSString *)userId launchOptions:(nullable NSDictionary *)launchOptions useCustomLaunchOptions:(BOOL)useCustomLaunchOptions;
146+
119147
/*!
120148
@method
121149

Artifacts/libIterable-iOS-SDK.a

11.1 KB
Binary file not shown.

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,11 @@ This project adheres to [Semantic Versioning](http://semver.org/).
1515
#### Fixed
1616
- nothing yet
1717

18+
## [4.1.1](https://github.com/Iterable/iterable-ios-sdk/releases/tag/4.1.1)
19+
#### Fixed
20+
- included the latest artifacts
21+
22+
1823
## [4.1.0](https://github.com/Iterable/iterable-ios-sdk/releases/tag/4.1.0)
1924
#### Added
2025
- added in new overloaded function for `initWithApiKey` to allow for custom launchOptions not passed from `application:didFinishLaunchingWithOptions`

IterableSDK.podspec

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

1818
s.name = "IterableSDK"
19-
s.version = "4.1.0"
19+
s.version = 4.1.1
2020
s.summary = "Iterable's official SDK for iOS"
2121

2222
s.description = <<-DESC

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[![CocoaPods](https://img.shields.io/cocoapods/v/IterableSDK.svg?style=flat)](https://cocoapods.org/pods/IterableSDK)
22
[![License](https://img.shields.io/cocoapods/l/IterableSDK.svg?style=flat)](https://opensource.org/licenses/MIT)
3-
[![Docs](https://img.shields.io/cocoapods/metrics/doc-percent/IterableSDK.svg?style=flat)](http://cocoadocs.org/docsets/IterableSDK/4.1.0/)
3+
[![Docs](https://img.shields.io/cocoapods/metrics/doc-percent/IterableSDK.svg?style=flat)](http://cocoadocs.org/docsets/IterableSDK/4.1.1/)
44

55
# Iterable iOS SDK
66

0 commit comments

Comments
 (0)