Skip to content

Commit

Permalink
Bump version numbers to 5.1.12
Browse files Browse the repository at this point in the history
  • Loading branch information
shepherd-l committed Dec 18, 2024
1 parent c8c04e5 commit b982a22
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"versionDefines": [
{
"name": "com.onesignal.unity.core",
"expression": "5.1.10",
"expression": "5.1.12",
"define": "ONE_SIGNAL_INSTALLED"
}
],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"versionDefines": [
{
"name": "com.onesignal.unity.core",
"expression": "5.1.10",
"expression": "5.1.12",
"define": "ONE_SIGNAL_INSTALLED"
}
],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"versionDefines": [
{
"name": "com.onesignal.unity.core",
"expression": "5.1.10",
"expression": "5.1.12",
"define": "ONE_SIGNAL_INSTALLED"
}
],
Expand Down
4 changes: 2 additions & 2 deletions com.onesignal.unity.core/Runtime/OneSignal.cs
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ namespace OneSignalSDK {
/// OneSignal SDK for Unity
/// </summary>
public static partial class OneSignal {
public const string Version = "5.1.10";
public const string Version = "5.1.12";

/// <summary>
/// The default static instance of the OneSignal Unity SDK
Expand Down Expand Up @@ -187,4 +187,4 @@ public static void Logout() {
OneSignal.Default.Logout();
}
}
}
}
2 changes: 1 addition & 1 deletion com.onesignal.unity.core/Runtime/OneSignalPlatform.cs
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@

namespace OneSignalSDK {
public abstract class OneSignalPlatform {
public const string VersionHeader = "050110";
public const string VersionHeader = "050112";

internal static event Action<string> OnInitialize;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ - (void)setOneSignalUnityDelegate:(id <UIApplicationDelegate>)delegate {

- (BOOL)oneSignalApplication:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
[OneSignalWrapper setSdkType:@"unity"];
[OneSignalWrapper setSdkVersion:@"050110"];
[OneSignalWrapper setSdkVersion:@"050112"];
[OneSignal initialize:nil withLaunchOptions:launchOptions];

if ([self respondsToSelector:@selector(oneSignalApplication:didFinishLaunchingWithOptions:)])
Expand Down

0 comments on commit b982a22

Please sign in to comment.