Skip to content

Commit

Permalink
Merge pull request #1031 from OneSignal/release-3.10.0
Browse files Browse the repository at this point in the history
Release 3.10.0
  • Loading branch information
emawby committed Dec 14, 2021
2 parents f447eba + e8e1ea8 commit 0be72c7
Show file tree
Hide file tree
Showing 14 changed files with 17 additions and 7 deletions.
2 changes: 1 addition & 1 deletion OneSignal.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "OneSignal"
s.version = "3.9.1"
s.version = "3.10.0"
s.summary = "OneSignal push notification library for mobile apps."
s.homepage = "https://onesignal.com"
s.license = { :type => 'MIT', :file => 'LICENSE' }
Expand Down
2 changes: 1 addition & 1 deletion OneSignalDynamic.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "OneSignalDynamic"
s.version = "3.9.1"
s.version = "3.10.0"
s.summary = "OneSignal push notification library for mobile apps."
s.homepage = "https://onesignal.com"
s.license = { :type => 'MIT', :file => 'LICENSE' }
Expand Down
2 changes: 1 addition & 1 deletion OneSignalXCFramework.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "OneSignalXCFramework"
s.version = "3.9.1"
s.version = "3.10.0"
s.summary = "OneSignal push notification library for mobile apps."
s.homepage = "https://onesignal.com"
s.license = { :type => 'MIT', :file => 'LICENSE' }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,8 @@ typedef NS_ENUM(NSUInteger, OSNotificationActionType) {
/* iOS 15+ : Interruption Level */
@property(readonly)NSString *interruptionLevel;

@property(readonly, nullable)NSString *collapseId;

/* Parses an APNS push payload into a OSNotification object.
Useful to call from your NotificationServiceExtension when the
didReceiveNotificationRequest:withContentHandler: method fires. */
Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,8 @@ typedef NS_ENUM(NSUInteger, OSNotificationActionType) {
/* iOS 15+ : Interruption Level */
@property(readonly)NSString *interruptionLevel;

@property(readonly, nullable)NSString *collapseId;

/* Parses an APNS push payload into a OSNotification object.
Useful to call from your NotificationServiceExtension when the
didReceiveNotificationRequest:withContentHandler: method fires. */
Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,8 @@ typedef NS_ENUM(NSUInteger, OSNotificationActionType) {
/* iOS 15+ : Interruption Level */
@property(readonly)NSString *interruptionLevel;

@property(readonly, nullable)NSString *collapseId;

/* Parses an APNS push payload into a OSNotification object.
Useful to call from your NotificationServiceExtension when the
didReceiveNotificationRequest:withContentHandler: method fires. */
Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<dict>
<key>Headers/OneSignal.h</key>
<data>
2cZwdG/c9TKC7+Ik/Z7fMeCM75Q=
r9ntYq+SuUsn/zBr31pvm3Zh9Y4=
</data>
<key>Info.plist</key>
<data>
Expand All @@ -23,11 +23,11 @@
<dict>
<key>hash</key>
<data>
2cZwdG/c9TKC7+Ik/Z7fMeCM75Q=
r9ntYq+SuUsn/zBr31pvm3Zh9Y4=
</data>
<key>hash2</key>
<data>
7J9RuLQVkWRCsTRnxNU2hickOCUQ2/XLiyxS/c4BxZE=
D8I3LEeI8spZNtuDGfOIv96UODbFdjnWWOimSmtBp2g=
</data>
</dict>
<key>Modules/module.modulemap</key>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,8 @@ typedef NS_ENUM(NSUInteger, OSNotificationActionType) {
/* iOS 15+ : Interruption Level */
@property(readonly)NSString *interruptionLevel;

@property(readonly, nullable)NSString *collapseId;

/* Parses an APNS push payload into a OSNotification object.
Useful to call from your NotificationServiceExtension when the
didReceiveNotificationRequest:withContentHandler: method fires. */
Expand Down
Binary file not shown.
2 changes: 1 addition & 1 deletion iOS_SDK/OneSignalSDK/Source/OneSignal.m
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ @interface OneSignal (SessionStatusDelegate)

@implementation OneSignal

NSString* const ONESIGNAL_VERSION = @"030901";
NSString* const ONESIGNAL_VERSION = @"031000";
static NSString* mSDKType = @"native";
static BOOL coldStartFromTapOnNotification = NO;
static BOOL shouldDelaySubscriptionUpdate = false;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,8 @@ typedef NS_ENUM(NSUInteger, OSNotificationActionType) {
/* iOS 15+ : Interruption Level */
@property(readonly)NSString *interruptionLevel;

@property(readonly, nullable)NSString *collapseId;

/* Parses an APNS push payload into a OSNotification object.
Useful to call from your NotificationServiceExtension when the
didReceiveNotificationRequest:withContentHandler: method fires. */
Expand Down

0 comments on commit 0be72c7

Please sign in to comment.