Skip to content

Commit 256fd46

Browse files
committed
2.3.1 Framework Release
1 parent e1aa421 commit 256fd46

File tree

4 files changed

+4
-3
lines changed

4 files changed

+4
-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.3.0"
3+
s.version = "2.3.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/Framework/OneSignal.framework/Versions/A/Headers/OneSignal.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ typedef OSNotificationDisplayType OSInFocusDisplayOption;
122122
@property(readonly)NSDictionary* attachments;
123123

124124
/* Action buttons passed */
125-
@property(readonly)NSDictionary *actionButtons;
125+
@property(readonly)NSArray *actionButtons;
126126

127127
/* Holds the original payload received
128128
Keep the raw value for users that would like to root the push */
@@ -265,6 +265,7 @@ typedef NS_ENUM(NSUInteger, ONE_S_LOG_LEVEL) {
265265
+ (void)postNotification:(NSDictionary*)jsonData;
266266
+ (void)postNotification:(NSDictionary*)jsonData onSuccess:(OSResultSuccessBlock)successBlock onFailure:(OSFailureBlock)failureBlock;
267267
+ (void)postNotificationWithJsonString:(NSString*)jsonData onSuccess:(OSResultSuccessBlock)successBlock onFailure:(OSFailureBlock)failureBlock;
268+
+ (NSString*)parseNSErrorAsJsonString:(NSError*)error;
268269

269270
// - Request and track user's location
270271
+ (void)promptLocation;
-121 KB
Binary file not shown.

iOS_SDK/OneSignal/OneSignal.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@
8181

8282
@implementation OneSignal
8383

84-
NSString* const ONESIGNAL_VERSION = @"020300";
84+
NSString* const ONESIGNAL_VERSION = @"020301";
8585
static NSString* mSDKType = @"native";
8686
static BOOL coldStartFromTapOnNotification = NO;
8787

0 commit comments

Comments
 (0)