Skip to content

Commit ab70089

Browse files
committed
5.1.13 release commit
1 parent 5184a7a commit ab70089

File tree

13 files changed

+18
-16
lines changed

13 files changed

+18
-16
lines changed

OneSignalExample/Assets/OneSignal/Attribution/OneSignal.UnityPackage.Attribution.asmdef

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"versionDefines": [
1717
{
1818
"name": "com.onesignal.unity.core",
19-
"expression": "5.1.12",
19+
"expression": "5.1.13",
2020
"define": "ONE_SIGNAL_INSTALLED"
2121
}
2222
],

OneSignalExample/Assets/OneSignal/CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

77
## [Unreleased]
8+
## [5.1.13]
89
### Changed
910
- Updated included Android SDK from 5.1.26 to [5.1.31](https://github.com/OneSignal/OneSignal-Android-SDK/releases/tag/5.1.31)
1011
- [Fix] Incorrect activity path for NotificationOpenedActivityHMS
@@ -449,7 +450,8 @@ If you run into any problems, please don’t hesitate to [open an issue](https:/
449450
- If you are updating from a previous version of the OneSignal Unity SDK please follow the Unity Asset Store instructions in
450451
the [README](https://github.com/OneSignal/OneSignal-Unity-SDK/README.md#unity-asset-store) to ensure a smooth transition.
451452

452-
[Unreleased]: https://github.com/OneSignal/OneSignal-Unity-SDK/compare/5.1.12...HEAD
453+
[Unreleased]: https://github.com/OneSignal/OneSignal-Unity-SDK/compare/5.1.13...HEAD
454+
[5.1.13]: https://github.com/OneSignal/OneSignal-Unity-SDK/compare/5.1.12...5.1.13
453455
[5.1.12]: https://github.com/OneSignal/OneSignal-Unity-SDK/compare/5.1.11...5.1.12
454456
[5.1.11]: https://github.com/OneSignal/OneSignal-Unity-SDK/compare/5.1.10...5.1.11
455457
[5.1.10]: https://github.com/OneSignal/OneSignal-Unity-SDK/compare/5.1.9...5.1.10

OneSignalExample/Assets/OneSignal/Editor/OneSignal.UnityPackage.Editor.asmdef

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"versionDefines": [
1717
{
1818
"name": "com.onesignal.unity.core",
19-
"expression": "5.1.12",
19+
"expression": "5.1.13",
2020
"define": "ONE_SIGNAL_INSTALLED"
2121
}
2222
],

OneSignalExample/Assets/OneSignal/Example/OneSignal.UnityPackage.Example.asmdef

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"versionDefines": [
1919
{
2020
"name": "com.onesignal.unity.core",
21-
"expression": "5.1.12",
21+
"expression": "5.1.13",
2222
"define": "ONE_SIGNAL_INSTALLED"
2323
}
2424
],
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
5.1.12
1+
5.1.13

OneSignalExample/Packages/packages-lock.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"depth": 0,
66
"source": "local",
77
"dependencies": {
8-
"com.onesignal.unity.core": "5.1.12"
8+
"com.onesignal.unity.core": "5.1.13"
99
}
1010
},
1111
"com.onesignal.unity.core": {
@@ -19,7 +19,7 @@
1919
"depth": 0,
2020
"source": "local",
2121
"dependencies": {
22-
"com.onesignal.unity.core": "5.1.12"
22+
"com.onesignal.unity.core": "5.1.13"
2323
}
2424
},
2525
"com.unity.ai.navigation": {

OneSignalExample/ProjectSettings/ProjectSettings.asset

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ PlayerSettings:
135135
vulkanEnableLateAcquireNextImage: 0
136136
vulkanEnableCommandBufferRecycling: 1
137137
loadStoreDebugModeEnabled: 0
138-
bundleVersion: 5.1.12
138+
bundleVersion: 5.1.13
139139
preloadedAssets: []
140140
metroInputSource: 0
141141
wsaTransparentSwapchain: 0

com.onesignal.unity.android/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
{
22
"name": "com.onesignal.unity.android",
33
"displayName": "OneSignal Unity SDK - Android",
4-
"version": "5.1.12",
4+
"version": "5.1.13",
55
"unity": "2018.4",
66
"description": "OneSignal is the market leader in customer engagement, powering mobile push, web push, email, and in-app messages.",
77
"dependencies": {
8-
"com.onesignal.unity.core": "5.1.12"
8+
"com.onesignal.unity.core": "5.1.13"
99
},
1010
"keywords": [
1111
"push-notifications",

com.onesignal.unity.core/Runtime/OneSignal.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ namespace OneSignalSDK {
4040
/// OneSignal SDK for Unity
4141
/// </summary>
4242
public static partial class OneSignal {
43-
public const string Version = "5.1.12";
43+
public const string Version = "5.1.13";
4444

4545
/// <summary>
4646
/// The default static instance of the OneSignal Unity SDK

com.onesignal.unity.core/Runtime/OneSignalPlatform.cs

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

3939
namespace OneSignalSDK {
4040
public abstract class OneSignalPlatform {
41-
public const string VersionHeader = "050112";
41+
public const string VersionHeader = "050113";
4242

4343
internal static event Action<string> OnInitialize;
4444

0 commit comments

Comments
 (0)