Skip to content

Commit

Permalink
2.9.4 Release
Browse files Browse the repository at this point in the history
• Includes a fix for a rare crash that was caused by invalid HTTP request parameters
  • Loading branch information
Nightsd01 committed Dec 6, 2018
1 parent 41a7091 commit a807ba8
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 3 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 = "2.9.3"
s.version = "2.9.4"
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 = "2.9.3"
s.version = "2.9.4"
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 @@ -457,6 +457,9 @@ typedef void (^OSEmailSuccessBlock)();
+ (void)setEmail:(NSString * _Nonnull)email;
+ (void)setEmail:(NSString * _Nonnull)email withEmailAuthHashToken:(NSString * _Nullable)hashToken;

+ (void)setExternalUserId:(NSString * _Nonnull)externalId;
+ (void)removeExternalUserId;

@end

#pragma clang diagnostic pop
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -457,6 +457,9 @@ typedef void (^OSEmailSuccessBlock)();
+ (void)setEmail:(NSString * _Nonnull)email;
+ (void)setEmail:(NSString * _Nonnull)email withEmailAuthHashToken:(NSString * _Nullable)hashToken;

+ (void)setExternalUserId:(NSString * _Nonnull)externalId;
+ (void)removeExternalUserId;

@end

#pragma clang diagnostic pop
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 @@ -122,7 +122,7 @@ @implementation OSPendingCallbacks

@implementation OneSignal

NSString* const ONESIGNAL_VERSION = @"020903";
NSString* const ONESIGNAL_VERSION = @"020904";
static NSString* mSDKType = @"native";
static BOOL coldStartFromTapOnNotification = NO;

Expand Down

0 comments on commit a807ba8

Please sign in to comment.