Skip to content

Commit

Permalink
Merge pull request #454 from microsoft/release/3.3.0
Browse files Browse the repository at this point in the history
Release 3.2.1
  • Loading branch information
YuyaoHu authored May 28, 2020
2 parents 5137bbe + 0469f30 commit 340cd4e
Show file tree
Hide file tree
Showing 14 changed files with 39 additions and 15 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.2.0";
public const string AnalyticsSDKVersion = "3.2.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.2.0";
public const string WrapperSdkVersion = "3.2.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.2.0";
public const string CrashesSDKVersion = "3.2.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.2.0";
public const string DistributeSDKVersion = "3.2.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.2.0";
public const string PushSDKVersion = "3.2.1";
private static readonly object _lockObject = new object();
private static bool _needsReplay = true;
private static bool IsAppCenterStarted;
Expand Down
11 changes: 10 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,21 @@
# App Center SDK for Unity Change Log

## Release 3.2.1 (in development)
## Release 3.2.1

### App Center

#### iOS

* **[Fix]** Fix reporting crashes caused by a thread exception.
* **[Improvement]** Use namespaced `NSUserDefaults` keys with the **MSAppCenter** prefix for all the keys set by the SDK. Fixed a few keys missing namespace.

### App Center Crashes

#### iOS

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

___

## Release 3.2.0

Expand Down
15 changes: 15 additions & 0 deletions RELEASE.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,18 @@
## Release 3.2.1

### App Center

#### iOS

* **[Fix]** Fix reporting crashes caused by a thread exception.
* **[Improvement]** Use namespaced `NSUserDefaults` keys with the **MSAppCenter** prefix for all the keys set by the SDK. Fixed a few keys missing namespace.

### App Center Crashes

#### iOS

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

## Release 3.2.0

### App Center
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.2.0">
<package name="AppCenter" version="3.2.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.2.0" needsCore="true">
<package name="AppCenterAnalytics" version="3.2.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.2.0" needsCore="true">
<package name="AppCenterCrashes" version="3.2.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.2.0" needsCore="true">
<package name="AppCenterDistribute" version="3.2.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.2.0" needsCore="true">
<package name="AppCenterPush" version="3.2.1" needsCore="true">
<include>
<!-- Shared files -->
<file path="Assets/AppCenter/Plugins/AppCenterSDK/Push/Shared" />
Expand Down
4 changes: 2 additions & 2 deletions build.cake
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ using System.Threading;

// Native SDK versions
const string AndroidSdkVersion = "3.2.1";
const string IosSdkVersion = "3.1.1";
const string UwpSdkVersion = "3.2.1";
const string IosSdkVersion = "3.2.0";
const string UwpSdkVersion = "3.2.2";

// URLs for downloading binaries.
/*
Expand Down
4 changes: 2 additions & 2 deletions cgmanifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"type": "git",
"git": {
"repositoryUrl": "https://github.com/microsoft/appcenter-sdk-apple.git",
"commitHash": "9cda019f382e53844f369e168fd02ad457b11c07"
"commitHash": "0daf878bbb2942261eeb54b7af0722f8c1434a2a"
}
}
},
Expand All @@ -23,7 +23,7 @@
"type": "git",
"git": {
"repositoryUrl": "https://github.com/microsoft/appcenter-sdk-dotnet.git",
"commitHash": "b6355d44135ff6a9774a6bf0ebfb255937d6adeb"
"commitHash": "6368d207499d3fee25548d9a9bc38821e4ccd2ee"
}
}
},
Expand Down

0 comments on commit 340cd4e

Please sign in to comment.