Skip to content

Commit

Permalink
Version update (#185)
Browse files Browse the repository at this point in the history
  • Loading branch information
konraddysput authored May 11, 2023
1 parent a13781d commit 4c88ebf
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Runtime/BacktraceClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ namespace Backtrace.Unity
/// </summary>
public class BacktraceClient : MonoBehaviour, IBacktraceClient
{
public const string VERSION = "3.8.0";
public const string VERSION = "3.8.1";
internal const string DefaultBacktraceGameObjectName = "BacktraceClient";
public BacktraceConfiguration Configuration;

Expand Down Expand Up @@ -598,7 +598,7 @@ private bool EnableMetrics(bool enableIfConfigurationIsDisabled = true)
public bool EnableMetrics(string uniqueAttributeName = BacktraceMetrics.DefaultUniqueAttributeName)
{
var universeName = Configuration.GetUniverseName();
if(string.IsNullOrEmpty(universeName))
if (string.IsNullOrEmpty(universeName))
{
Debug.LogWarning("Cannot initialize event aggregation - Unknown Backtrace URL.");
return false;
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "io.backtrace.unity",
"displayName": "Backtrace",
"version": "3.8.0",
"version": "3.8.1",
"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": [
Expand Down

0 comments on commit 4c88ebf

Please sign in to comment.