Skip to content

Commit 5826993

Browse files
Update deprecation version to 6.1.0.
1 parent e2a8cd3 commit 5826993

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

swift-sdk/IterableAPI.swift

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -365,22 +365,22 @@ public final class IterableAPI : NSObject {
365365
/**
366366
Deprecated. Gets the list of InAppMessages from the server.
367367

368-
This is deprecated in SDK version 6.0.4.
369-
InApp notifications are automatically shown via `IterableInAppDelegate` methods. The SDK takes care of getting messages automatically.
368+
This is deprecated in SDK version 6.1.0.
369+
In-App notifications are automatically shown via `IterableInAppDelegate` methods. The SDK takes care of getting messages automatically.
370370
See `IterableAPI.inAppManager.getMessages()` method to get messages already fetched from the server.
371371

372372
- parameter count: the number of messages to fetch
373373
*/
374-
@available(*, deprecated: 6.0.4, message: "Use IterableAPI.inAppManager.getMessages() method instead.")
374+
@available(*, deprecated: 6.1.0, message: "Use IterableAPI.inAppManager.getMessages() method instead.")
375375
@objc(getInAppMessages:) public static func get(inAppMessages count: NSNumber) {
376376
internalImplementation?.getInAppMessages(count)
377377
}
378378

379379
/**
380380
Deprecated. Gets the list of InAppMessages with optional additional fields and custom completion blocks
381381

382-
This is deprecated in SDK version 6.0.4.
383-
InApp notifications are automatically shown via `IterableInAppDelegate` methods. The SDK takes care of getting messages automatically.
382+
This is deprecated in SDK version 6.1.0.
383+
In-App notifications are automatically shown via `IterableInAppDelegate` methods. The SDK takes care of getting messages automatically.
384384
See `IterableAPI.inAppManager.getMessages()` method to get messages already fetched from the server.
385385

386386
- Parameters:
@@ -391,7 +391,7 @@ public final class IterableAPI : NSObject {
391391
- seeAlso: OnSuccessHandler
392392
- seeAlso: OnFailureHandler
393393
*/
394-
@available(*, deprecated: 6.0.4, message: "Use IterableAPI.inAppManager.getMessages() method instead.")
394+
@available(*, deprecated: 6.1.0, message: "Use IterableAPI.inAppManager.getMessages() method instead.")
395395
@objc(getInAppMessages:onSucess:onFailure:) public static func get(inAppMessages count: NSNumber, onSuccess: OnSuccessHandler?, onFailure: OnFailureHandler?) {
396396
internalImplementation?.getInAppMessages(count, onSuccess: onSuccess, onFailure: onFailure)
397397
}

0 commit comments

Comments
 (0)