Skip to content

Commit

Permalink
Merge pull request #470 from microsoft/release/3.3.1
Browse files Browse the repository at this point in the history
Release 3.3.1
  • Loading branch information
MatkovIvan authored Sep 22, 2020
2 parents 96bf42c + 9bcd352 commit 501f947
Show file tree
Hide file tree
Showing 14 changed files with 69 additions and 17 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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 = "3.3.0";
public const string AnalyticsSDKVersion = "3.3.1";

public static void PrepareEventHandlers()
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ public static class WrapperSdk
private static bool _hasAttemptedToGetRuntimeVersion;

public const string Name = "appcenter.unity";
public const string WrapperSdkVersion = "3.3.0";
public const string WrapperSdkVersion = "3.3.1";

internal static string WrapperRuntimeVersion
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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 = "3.3.0";
public const string CrashesSDKVersion = "3.3.1";
private static bool _reportUnhandledExceptions = false;
private static bool _enableErrorAttachmentsCallbacks = false;
private static readonly object _objectLock = new object();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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 = "3.3.0";
public const string DistributeSDKVersion = "3.3.1";

public static void PrepareEventHandlers()
{
Expand Down
2 changes: 1 addition & 1 deletion Assets/AppCenter/Plugins/AppCenterSDK/Push/Shared/Push.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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 = "3.3.0";
public const string PushSDKVersion = "3.3.1";
private static readonly object _lockObject = new object();
private static bool _needsReplay = true;
private static bool IsAppCenterStarted;
Expand Down
24 changes: 23 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,35 @@
# App Center SDK for Unity Change Log

## Release 3.3.1 (Under development)
## Release 3.3.1

### App Center

#### iOS

* **[Fix]** Fix overriding custom `URLScheme` in the post-build script.

### App Center Analytics

#### iOS

* **[Fix]** Fix processing logs (e.g., events) emitted from the `applicationWillTerminate` application delegate method.

### App Center Crashes

#### Android/iOS

* **[Fix]** Fix sending attachments with a `null` text value.

#### iOS

* **[Improvement]** Update PLCrashReporter to 1.7.2.

### App Center Distribute

#### iOS

* **[Fix]** Fix manually checking for updates before `applicationDidBecomeActive` event.

___

## Release 3.3.0
Expand Down
30 changes: 30 additions & 0 deletions RELEASE.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,33 @@
## Release 3.3.1

### App Center

#### iOS

* **[Fix]** Fix overriding custom `URLScheme` in the post-build script.

### App Center Analytics

#### iOS

* **[Fix]** Fix processing logs (e.g., events) emitted from the `applicationWillTerminate` application delegate method.

### App Center Crashes

#### Android/iOS

* **[Fix]** Fix sending attachments with a `null` text value.

#### iOS

* **[Improvement]** Update PLCrashReporter to 1.7.2.

### App Center Distribute

#### iOS

* **[Fix]** Fix manually checking for updates before `applicationDidBecomeActive` event.

## Release 3.3.0

This version has a breaking change on iOS - it drops Xcode 10 support, Xcode 11 is a minimal supported version now.
Expand Down
2 changes: 1 addition & 1 deletion UnityPackageSpecs/AppCenter.unitypackagespec
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<package name="AppCenter" version="3.3.0">
<package name="AppCenter" version="3.3.1">
<include>
<!-- Editor related files -->
<file path="Assets/AppCenter/Editor" />
Expand Down
2 changes: 1 addition & 1 deletion UnityPackageSpecs/AppCenterAnalytics.unitypackagespec
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<package name="AppCenterAnalytics" version="3.3.0" needsCore="true">
<package name="AppCenterAnalytics" version="3.3.1" needsCore="true">
<include>
<!-- Shared files -->
<file path="Assets/AppCenter/Plugins/AppCenterSDK/Analytics/Shared" />
Expand Down
2 changes: 1 addition & 1 deletion UnityPackageSpecs/AppCenterCrashes.unitypackagespec
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<package name="AppCenterCrashes" version="3.3.0" needsCore="true">
<package name="AppCenterCrashes" version="3.3.1" needsCore="true">
<include>
<!-- Shared files -->
<file path="Assets/AppCenter/Plugins/AppCenterSDK/Crashes/Shared" />
Expand Down
2 changes: 1 addition & 1 deletion UnityPackageSpecs/AppCenterDistribute.unitypackagespec
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<package name="AppCenterDistribute" version="3.3.0" needsCore="true">
<package name="AppCenterDistribute" version="3.3.1" needsCore="true">
<include>
<!-- Shared files -->
<file path="Assets/AppCenter/Plugins/AppCenterSDK/Distribute/Shared" />
Expand Down
2 changes: 1 addition & 1 deletion UnityPackageSpecs/AppCenterPush.unitypackagespec
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<package name="AppCenterPush" version="3.3.0" needsCore="true">
<package name="AppCenterPush" version="3.3.1" needsCore="true">
<include>
<!-- Shared files -->
<file path="Assets/AppCenter/Plugins/AppCenterSDK/Push/Shared" />
Expand Down
6 changes: 3 additions & 3 deletions build.cake
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ using System.Net;
using System.Threading;

// Native SDK versions
const string AndroidSdkVersion = "3.3.0";
const string IosSdkVersion = "3.3.2";
const string UwpSdkVersion = "3.4.0";
const string AndroidSdkVersion = "3.3.1";
const string IosSdkVersion = "3.3.4";
const string UwpSdkVersion = "3.4.2";

// URLs for downloading binaries.
/*
Expand Down
6 changes: 3 additions & 3 deletions cgmanifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"type": "git",
"git": {
"repositoryUrl": "https://github.com/microsoft/appcenter-sdk-android.git",
"commitHash": "a8185709a5bd8f51bec88a30d7a82320ab360d0b"
"commitHash": "0872e75c14b4b0ca6d2262ba04b80d1718a65caf"
}
}
},
Expand All @@ -14,7 +14,7 @@
"type": "git",
"git": {
"repositoryUrl": "https://github.com/microsoft/appcenter-sdk-apple.git",
"commitHash": "f2d162d08571cc66e07ee8960ef7cae7e2f79e2a"
"commitHash": "96794627f4c0873c0d0ff058aae78da3abbba487"
}
}
},
Expand All @@ -23,7 +23,7 @@
"type": "git",
"git": {
"repositoryUrl": "https://github.com/microsoft/appcenter-sdk-dotnet.git",
"commitHash": "89653ac0cac5e92675d747ac8495c216cd17775a"
"commitHash": "c667ec4ead495976f59977c1897cd3b4340130c0"
}
}
},
Expand Down

0 comments on commit 501f947

Please sign in to comment.