Skip to content

Commit a99a3ae

Browse files
committed
2.10.1 release commit
* Compiled with Xcode 10.1 for bitcode compatibility
1 parent f661934 commit a99a3ae

File tree

8 files changed

+14
-4
lines changed

8 files changed

+14
-4
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.10.0"
3+
s.version = "2.10.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.10.0"
3+
s.version = "2.10.1"
44
s.summary = "OneSignal push notification library for mobile apps."
55
s.homepage = "https://onesignal.com"
66
s.license = { :type => 'MIT', :file => 'LICENSE' }

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,4 @@ For account issues and support please contact OneSignal support from the [OneSig
2626

2727
#### Supports:
2828
* Swift and Objective-C Projects
29-
* Supports iOS 7 to iOS 12.2
29+
* Supports iOS 7 to iOS 13

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

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -152,6 +152,11 @@ typedef NS_ENUM(NSUInteger, OSNotificationDisplayType) {
152152
/* iOS 10+ : Groups notifications into threads */
153153
@property(readonly)NSString *threadId;
154154

155+
/* Parses an APS push payload into a OSNotificationPayload object.
156+
Useful to call from your NotificationServiceExtension when the
157+
didReceiveNotificationRequest:withContentHandler: method fires. */
158+
+(instancetype)parseWithApns:(nonnull NSDictionary*)message;
159+
155160
@end
156161

157162
// ## OneSignal OSNotification
Binary file not shown.

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
@@ -152,6 +152,11 @@ typedef NS_ENUM(NSUInteger, OSNotificationDisplayType) {
152152
/* iOS 10+ : Groups notifications into threads */
153153
@property(readonly)NSString *threadId;
154154

155+
/* Parses an APS push payload into a OSNotificationPayload object.
156+
Useful to call from your NotificationServiceExtension when the
157+
didReceiveNotificationRequest:withContentHandler: method fires. */
158+
+(instancetype)parseWithApns:(nonnull NSDictionary*)message;
159+
155160
@end
156161

157162
// ## OneSignal OSNotification
Binary file not shown.

iOS_SDK/OneSignalSDK/Source/OneSignal.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ @implementation OSPendingCallbacks
122122

123123
@implementation OneSignal
124124

125-
NSString* const ONESIGNAL_VERSION = @"021000";
125+
NSString* const ONESIGNAL_VERSION = @"021001";
126126
static NSString* mSDKType = @"native";
127127
static BOOL coldStartFromTapOnNotification = NO;
128128

0 commit comments

Comments
 (0)