Skip to content

Commit ddf63b2

Browse files
authored
Updated binary and header file and incremented version to 2.13.1 (#653)
1 parent e06c466 commit ddf63b2

File tree

5 files changed

+8
-3
lines changed

5 files changed

+8
-3
lines changed

OneSignal.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = "OneSignal"
3-
s.version = "2.13.0"
3+
s.version = "2.13.1"
44
s.summary = "OneSignal push notification library for mobile apps."
55
s.homepage = "https://onesignal.com"
66
s.license = { :type => 'MIT', :file => 'LICENSE' }

OneSignalDynamic.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = "OneSignalDynamic"
3-
s.version = "2.13.0"
3+
s.version = "2.13.1"
44
s.summary = "OneSignal push notification library for mobile apps."
55
s.homepage = "https://onesignal.com"
66
s.license = { :type => 'MIT', :file => 'LICENSE' }

iOS_SDK/OneSignalSDK/Framework/OneSignal.framework/Versions/A/Headers/OneSignal.h

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -507,8 +507,13 @@ typedef void (^OSEmailSuccessBlock)();
507507

508508

509509
// External user id
510+
// Typedefs defining completion blocks for updating the external user id
511+
typedef void (^OSUpdateExternalUserIdBlock)(NSDictionary* results);
512+
510513
+ (void)setExternalUserId:(NSString * _Nonnull)externalId;
514+
+ (void)setExternalUserId:(NSString * _Nonnull)externalId withCompletion:(OSUpdateExternalUserIdBlock _Nullable)completionBlock;
511515
+ (void)removeExternalUserId;
516+
+ (void)removeExternalUserId:(OSUpdateExternalUserIdBlock _Nullable)completionBlock;
512517

513518
// In-App Messaging triggers
514519
+ (void)addTrigger:(NSString * _Nonnull)key withValue:(id _Nonnull)value;
Binary file not shown.

iOS_SDK/OneSignalSDK/Source/OneSignal.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ @interface OneSignal (SessionStatusDelegate)
132132

133133
@implementation OneSignal
134134

135-
NSString* const ONESIGNAL_VERSION = @"021300";
135+
NSString* const ONESIGNAL_VERSION = @"021301";
136136
static NSString* mSDKType = @"native";
137137
static BOOL coldStartFromTapOnNotification = NO;
138138

0 commit comments

Comments
 (0)