Skip to content

Commit a543f13

Browse files
committed
release: SDK 3.2.0
1 parent 5cdc937 commit a543f13

File tree

136 files changed

+2747
-7599
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

136 files changed

+2747
-7599
lines changed

Package.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ let package = Package(
1818
targets: [
1919
.binaryTarget(
2020
name: "Batch",
21-
url: "https://download.batch.com/sdk/ios/spm/BatchSDK-ios_spm-xcframework-3.1.0.zip",
22-
checksum: "0d18a0de47124835eaee086380a1244eb18e99699d8affee18b3643357091345"
21+
url: "https://download.batch.com/sdk/ios/spm/BatchSDK-ios_spm-xcframework-3.2.0.zip",
22+
checksum: "e34cd08076dd191de59f2a5b27e78df14d7b6b0ee3f0ebe461a2288b2572b70a"
2323
)
2424
]
2525
)

Sources/Batch.xcodeproj/project.pbxproj

Lines changed: 20 additions & 11 deletions
Large diffs are not rendered by default.

Sources/Batch/BatchEventAttributes.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ NS_ASSUME_NONNULL_BEGIN
3131
/// Add an array of string attribute for the specified key.
3232
///
3333
/// - Parameters:
34-
/// - value: Array of string values to add. Strings must not be longer than 200 characters. Cannot have more than 25
34+
/// - value: Array of string values to add. Strings must not be longer than 300 characters. Cannot have more than 25
3535
/// items.
3636
/// - key: Attribute key. Should be made of letters, numbers or underscores ([a-z0-9_]) and can't be longer than 30
3737
/// characters.
@@ -91,7 +91,7 @@ NS_ASSUME_NONNULL_BEGIN
9191
/// Add a string attribute for the specified key.
9292
///
9393
/// - Parameters:
94-
/// - value: String value to add. Can't be longer than 64 characters, and can't be empty or nil. For better results,
94+
/// - value: String value to add. Can't be longer than 300 characters, and can't be empty or nil. For better results,
9595
/// you should trim/lowercase your strings, and use slugs when possible.
9696
/// - key: Attribute key. Should be made of letters, numbers or underscores ([a-z0-9_]) and can't be longer than 30
9797
/// characters.

Sources/Batch/BatchProfileEditor.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ typedef NS_ENUM(NSUInteger, BatchSMSSubscriptionState) {
170170

171171
/// Set a string profile attribute for a key.
172172
///
173-
/// Must not be longer than 64 characters. Can be empty.
173+
/// Must not be longer than 300 characters. Can be empty.
174174
/// For better results, you should make them upper/lowercase and trim the whitespaces.
175175
/// - Parameters:
176176
/// - attribute: The attribute value.
@@ -188,7 +188,7 @@ typedef NS_ENUM(NSUInteger, BatchSMSSubscriptionState) {
188188
///
189189
/// - Parameters:
190190
/// - attribute: The attribute value. Cannot have more than 25 items.
191-
/// Individual items cannot be longer than 64 characters.
191+
/// Individual items cannot be longer than 300 characters.
192192
/// For better results, you should make them upper/lowercase and trim the whitespaces.
193193
/// - key: The attribute key. Can't be nil. It should be made of letters, numbers or underscores (`[a-z0-9_]`) and
194194
/// can't be longer than 30 characters.
@@ -207,7 +207,7 @@ typedef NS_ENUM(NSUInteger, BatchSMSSubscriptionState) {
207207
///
208208
/// - Parameters:
209209
/// - attribute: The attribute value. Cannot have more than 25 operations pending on an array attribute.
210-
/// Individual items cannot be longer than 64 characters.
210+
/// Individual items cannot be longer than 300 characters.
211211
/// For better results, you should make them upper/lowercase and trim the whitespaces.
212212
/// - key: The attribute key. Can't be nil. It should be made of letters, numbers or underscores (`[a-z0-9_]`) and
213213
/// can't be longer than 30 characters.
@@ -226,7 +226,7 @@ typedef NS_ENUM(NSUInteger, BatchSMSSubscriptionState) {
226226
///
227227
/// - Parameters:
228228
/// - attribute: The attribute value. Cannot have more than 25 operations pending on an array attribute.
229-
/// Individual items cannot be longer than 64 characters.
229+
/// Individual items cannot be longer than 300 characters.
230230
/// For better results, you should make them upper/lowercase and trim the whitespaces.
231231
/// - key: The attribute key. Can't be nil. It should be made of letters, numbers or underscores (`[a-z0-9_]`) and
232232
/// can't be longer than 30 characters.

0 commit comments

Comments
 (0)