update changelog and versions to 2.3.0

This commit is contained in:
Cloud 2019-08-23 14:49:42 +08:00
Родитель afd3016041
Коммит 9299f44232
13 изменённых файлов: 28 добавлений и 13 удалений

Просмотреть файл

@ -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()
{

Просмотреть файл

@ -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
{

Просмотреть файл

@ -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();

Просмотреть файл

@ -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()
{

Просмотреть файл

@ -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;

Просмотреть файл

@ -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()`.

Просмотреть файл

@ -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:

Просмотреть файл

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<package name="AppCenter" version="2.2.0">
<package name="AppCenter" version="2.3.0">
<include>
<!-- Editor related files -->
<file path="Assets/AppCenter/Editor" />

Просмотреть файл

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<package name="AppCenterAnalytics" version="2.2.0" needsCore="true">
<package name="AppCenterAnalytics" version="2.3.0" needsCore="true">
<include>
<!-- Shared files -->
<file path="Assets/AppCenter/Plugins/AppCenterSDK/Analytics/Shared" />

Просмотреть файл

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<package name="AppCenterCrashes" version="2.2.0" needsCore="true">
<package name="AppCenterCrashes" version="2.3.0" needsCore="true">
<include>
<!-- Shared files -->
<file path="Assets/AppCenter/Plugins/AppCenterSDK/Crashes/Shared" />

Просмотреть файл

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<package name="AppCenterDistribute" version="2.2.0" needsCore="true">
<package name="AppCenterDistribute" version="2.3.0" needsCore="true">
<include>
<!-- Shared files -->
<file path="Assets/AppCenter/Plugins/AppCenterSDK/Distribute/Shared" />

Просмотреть файл

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<package name="AppCenterPush" version="2.2.0" needsCore="true">
<package name="AppCenterPush" version="2.3.0" needsCore="true">
<include>
<!-- Shared files -->
<file path="Assets/AppCenter/Plugins/AppCenterSDK/Push/Shared" />

Просмотреть файл

@ -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.