From 4e7501b754012d693de24c0bc22e51d8e3dc4505 Mon Sep 17 00:00:00 2001 From: Konrad Dysput Date: Mon, 17 Jun 2024 18:06:17 +0200 Subject: [PATCH 1/3] Release 3.9.0 --- CHANGELOG.md | 10 ++++++++++ Runtime/BacktraceClient.cs | 2 +- package.json | 2 +- 3 files changed, 12 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 93b4421a..0d890e61 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # Backtrace Unity Release Notes +## Version 3.9.0 + +Bugfixes +- Allow unity to finish capturing uncaught exception generated on the Android native layer (#215). + +Improvements +- Proguard support (#216) +- Updated native NDK libraries to the latest version of the backtrace-android library (#217). +- Added support for a new crash flow when the crash handler executable cannot be extracted on Android (#218). + ## Version 3.8.7 Bugfixes diff --git a/Runtime/BacktraceClient.cs b/Runtime/BacktraceClient.cs index 2a63974d..d4a4de21 100644 --- a/Runtime/BacktraceClient.cs +++ b/Runtime/BacktraceClient.cs @@ -24,7 +24,7 @@ namespace Backtrace.Unity /// public class BacktraceClient : MonoBehaviour, IBacktraceClient { - public const string VERSION = "3.8.7"; + public const string VERSION = "3.9.0"; internal const string DefaultBacktraceGameObjectName = "BacktraceClient"; public BacktraceConfiguration Configuration; diff --git a/package.json b/package.json index 492c6752..1ff1ce2b 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "io.backtrace.unity", "displayName": "Backtrace", - "version": "3.8.7", + "version": "3.9.0", "unity": "2017.1", "description": "Backtrace's integration with Unity games allows customers to capture and report handled and unhandled Unity exceptions to their Backtrace instance, instantly offering the ability to prioritize and debug software errors.", "keywords": [ From af03a45abeba3da3095a89ae1f8db21f942163dd Mon Sep 17 00:00:00 2001 From: Konrad Dysput Date: Mon, 17 Jun 2024 18:27:49 +0200 Subject: [PATCH 2/3] Update CHANGELOG.md Co-authored-by: Rick Foster <115846221+rick-bt@users.noreply.github.com> --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0d890e61..142fa440 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,7 +8,7 @@ Bugfixes Improvements - Proguard support (#216) - Updated native NDK libraries to the latest version of the backtrace-android library (#217). -- Added support for a new crash flow when the crash handler executable cannot be extracted on Android (#218). +- Added support for a new crash flow when the crash handler executable cannot be extracted on Android. The `useLegacyPackaging` is no longer required. (#218). ## Version 3.8.7 From 30ed4d5a0394c65ab8dcfcc19ecbf3c800648809 Mon Sep 17 00:00:00 2001 From: Konrad Dysput Date: Mon, 17 Jun 2024 18:32:23 +0200 Subject: [PATCH 3/3] Changelog update --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 142fa440..1c648f4d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,7 +6,7 @@ Bugfixes - Allow unity to finish capturing uncaught exception generated on the Android native layer (#215). Improvements -- Proguard support (#216) +- Proguard Support. Added support for native managed exceptions when ProGuard obfuscation is in use (#216). - Updated native NDK libraries to the latest version of the backtrace-android library (#217). - Added support for a new crash flow when the crash handler executable cannot be extracted on Android. The `useLegacyPackaging` is no longer required. (#218).