diff --git a/Assets/AppCenter/Plugins/AppCenterSDK/Analytics/Shared/Analytics.cs b/Assets/AppCenter/Plugins/AppCenterSDK/Analytics/Shared/Analytics.cs index e8501fc5..25fc243b 100755 --- a/Assets/AppCenter/Plugins/AppCenterSDK/Analytics/Shared/Analytics.cs +++ b/Assets/AppCenter/Plugins/AppCenterSDK/Analytics/Shared/Analytics.cs @@ -16,7 +16,7 @@ namespace Microsoft.AppCenter.Unity.Analytics public class Analytics { // Used by App Center Unity Editor Extensions: https://github.com/Microsoft/AppCenter-SDK-Unity-Extension - public const string AnalyticsSDKVersion = "2.2.0"; + public const string AnalyticsSDKVersion = "2.3.0"; public static void PrepareEventHandlers() { diff --git a/Assets/AppCenter/Plugins/AppCenterSDK/Core/Shared/WrapperSdk.cs b/Assets/AppCenter/Plugins/AppCenterSDK/Core/Shared/WrapperSdk.cs index c10aaf60..b61adf4d 100644 --- a/Assets/AppCenter/Plugins/AppCenterSDK/Core/Shared/WrapperSdk.cs +++ b/Assets/AppCenter/Plugins/AppCenterSDK/Core/Shared/WrapperSdk.cs @@ -12,7 +12,7 @@ namespace Microsoft.AppCenter.Unity private static bool _hasAttemptedToGetRuntimeVersion; public const string Name = "appcenter.unity"; - public const string WrapperSdkVersion = "2.2.0"; + public const string WrapperSdkVersion = "2.3.0"; internal static string WrapperRuntimeVersion { diff --git a/Assets/AppCenter/Plugins/AppCenterSDK/Crashes/Shared/Crashes.cs b/Assets/AppCenter/Plugins/AppCenterSDK/Crashes/Shared/Crashes.cs index e8a99c83..46141c89 100644 --- a/Assets/AppCenter/Plugins/AppCenterSDK/Crashes/Shared/Crashes.cs +++ b/Assets/AppCenter/Plugins/AppCenterSDK/Crashes/Shared/Crashes.cs @@ -20,7 +20,7 @@ namespace Microsoft.AppCenter.Unity.Crashes public class Crashes { // Used by App Center Unity Editor Extensions: https://github.com/Microsoft/AppCenter-SDK-Unity-Extension - public const string CrashesSDKVersion = "2.2.0"; + public const string CrashesSDKVersion = "2.3.0"; private static bool _reportUnhandledExceptions = false; private static readonly object _objectLock = new object(); diff --git a/Assets/AppCenter/Plugins/AppCenterSDK/Distribute/Shared/Distribute.cs b/Assets/AppCenter/Plugins/AppCenterSDK/Distribute/Shared/Distribute.cs index 4f2ee9b5..fe75922a 100644 --- a/Assets/AppCenter/Plugins/AppCenterSDK/Distribute/Shared/Distribute.cs +++ b/Assets/AppCenter/Plugins/AppCenterSDK/Distribute/Shared/Distribute.cs @@ -16,7 +16,7 @@ namespace Microsoft.AppCenter.Unity.Distribute public class Distribute { // Used by App Center Unity Editor Extensions: https://github.com/Microsoft/AppCenter-SDK-Unity-Extension - public const string DistributeSDKVersion = "2.2.0"; + public const string DistributeSDKVersion = "2.3.0"; public static void PrepareEventHandlers() { diff --git a/Assets/AppCenter/Plugins/AppCenterSDK/Push/Shared/Push.cs b/Assets/AppCenter/Plugins/AppCenterSDK/Push/Shared/Push.cs index 04fe3b67..c71ccb1c 100644 --- a/Assets/AppCenter/Plugins/AppCenterSDK/Push/Shared/Push.cs +++ b/Assets/AppCenter/Plugins/AppCenterSDK/Push/Shared/Push.cs @@ -16,7 +16,7 @@ namespace Microsoft.AppCenter.Unity.Push public class Push { // Used by App Center Unity Editor Extensions: https://github.com/Microsoft/AppCenter-SDK-Unity-Extension - public const string PushSDKVersion = "2.2.0"; + public const string PushSDKVersion = "2.3.0"; private static readonly object _lockObject = new object(); private static bool _needsReplay = true; diff --git a/CHANGELOG.md b/CHANGELOG.md index c6ac993f..f950115c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,10 @@ # App Center SDK for Unity Change Log -## Release 2.3.0 (Under development) +## Release 2.3.0 + +Updated native SDK versions: +* Android from 2.2.0 to [2.3.0](https://github.com/Microsoft/AppCenter-SDK-Android/releases/tag/2.3.0) +* iOS from 2.2.0 to [2.3.0](https://github.com/Microsoft/AppCenter-SDK-Apple/releases/tag/2.3.0) * **[Feature]** Catch "low memory warning" and provide the API to check if it has happened in last session: `Crashes.HasReceivedMemoryWarningInLastSessionAsync()`. diff --git a/RELEASE.md b/RELEASE.md index b92bb2cb..bca66a8f 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -1,3 +1,14 @@ +## Release 2.3.0 + +Updated native SDK versions: +* Android from 2.2.0 to [2.3.0](https://github.com/Microsoft/AppCenter-SDK-Android/releases/tag/2.3.0) +* iOS from 2.2.0 to [2.3.0](https://github.com/Microsoft/AppCenter-SDK-Apple/releases/tag/2.3.0) +* **[Feature]** Catch "low memory warning" and provide the API to check if it has happened in last session: `Crashes.HasReceivedMemoryWarningInLastSessionAsync()`. + +**Android** + +* **[Bug fix]** Fixed handling the update actions in custom update dialog in Distributed module. + ## Release 2.2.0 Updated native SDK versions: diff --git a/UnityPackageSpecs/AppCenter.unitypackagespec b/UnityPackageSpecs/AppCenter.unitypackagespec index 5b61c1e7..d1ce2e5a 100644 --- a/UnityPackageSpecs/AppCenter.unitypackagespec +++ b/UnityPackageSpecs/AppCenter.unitypackagespec @@ -1,5 +1,5 @@ - + diff --git a/UnityPackageSpecs/AppCenterAnalytics.unitypackagespec b/UnityPackageSpecs/AppCenterAnalytics.unitypackagespec index 5acd0fb7..a0713833 100644 --- a/UnityPackageSpecs/AppCenterAnalytics.unitypackagespec +++ b/UnityPackageSpecs/AppCenterAnalytics.unitypackagespec @@ -1,5 +1,5 @@ - + diff --git a/UnityPackageSpecs/AppCenterCrashes.unitypackagespec b/UnityPackageSpecs/AppCenterCrashes.unitypackagespec index 4667a72a..7090251c 100644 --- a/UnityPackageSpecs/AppCenterCrashes.unitypackagespec +++ b/UnityPackageSpecs/AppCenterCrashes.unitypackagespec @@ -1,5 +1,5 @@ - + diff --git a/UnityPackageSpecs/AppCenterDistribute.unitypackagespec b/UnityPackageSpecs/AppCenterDistribute.unitypackagespec index 54b12284..d68f1dc5 100644 --- a/UnityPackageSpecs/AppCenterDistribute.unitypackagespec +++ b/UnityPackageSpecs/AppCenterDistribute.unitypackagespec @@ -1,5 +1,5 @@ - + diff --git a/UnityPackageSpecs/AppCenterPush.unitypackagespec b/UnityPackageSpecs/AppCenterPush.unitypackagespec index 176b6c5d..488a235b 100644 --- a/UnityPackageSpecs/AppCenterPush.unitypackagespec +++ b/UnityPackageSpecs/AppCenterPush.unitypackagespec @@ -1,5 +1,5 @@ - + diff --git a/build.cake b/build.cake index 350855de..bcab7448 100644 --- a/build.cake +++ b/build.cake @@ -12,8 +12,8 @@ using System.Runtime.Versioning; using NuGet; // Native SDK versions -var AndroidSdkVersion = "2.2.1-4+731760d88"; -var IosSdkVersion = "2.2.1-5+49fca27d68baabc7654b47c2bb6ab609e997382e"; +var AndroidSdkVersion = "2.3.0"; +var IosSdkVersion = "2.3.0"; var UwpSdkVersion = "2.1.0"; // URLs for downloading binaries.