Skip to content

Commit 4c88ebf

Browse files
authored
Version update (#185)
1 parent a13781d commit 4c88ebf

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Runtime/BacktraceClient.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ namespace Backtrace.Unity
2424
/// </summary>
2525
public class BacktraceClient : MonoBehaviour, IBacktraceClient
2626
{
27-
public const string VERSION = "3.8.0";
27+
public const string VERSION = "3.8.1";
2828
internal const string DefaultBacktraceGameObjectName = "BacktraceClient";
2929
public BacktraceConfiguration Configuration;
3030

@@ -598,7 +598,7 @@ private bool EnableMetrics(bool enableIfConfigurationIsDisabled = true)
598598
public bool EnableMetrics(string uniqueAttributeName = BacktraceMetrics.DefaultUniqueAttributeName)
599599
{
600600
var universeName = Configuration.GetUniverseName();
601-
if(string.IsNullOrEmpty(universeName))
601+
if (string.IsNullOrEmpty(universeName))
602602
{
603603
Debug.LogWarning("Cannot initialize event aggregation - Unknown Backtrace URL.");
604604
return false;

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "io.backtrace.unity",
33
"displayName": "Backtrace",
4-
"version": "3.8.0",
4+
"version": "3.8.1",
55
"unity": "2017.1",
66
"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.",
77
"keywords": [

0 commit comments

Comments
 (0)