Skip to content

Commit f4059cb

Browse files
committed
Version 1.1.3
1 parent 2b866f6 commit f4059cb

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Backtrace Unity Release Notes
22

3+
## Version 1.1.3 - 07.06.2019
4+
- Removed error log when unity-plugin receive status code: 200 on attachment upload.
5+
36
## Version 1.1.2 - 06.06.2019
47
- Changed a way how Unity-plugin upload attachments to Backtrace via `submit.backtrace.io`
58

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "Backtrace-unity",
33
"displayName": "Backtrace-Unity",
4-
"version": "1.1.2",
4+
"version": "1.1.3",
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": [

src/Model/BacktraceData.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ public string ToJson()
117117
["lang"] = "csharp",
118118
["langVersion"] = "Unity",
119119
["agent"] = "backtrace-unity",
120-
["agentVersion"] = "1.1.2",
120+
["agentVersion"] = "1.1.3",
121121
["mainThread"] = MainThread,
122122
["classifiers"] = new JArray(Classifier),
123123
["attributes"] = Attributes.ToJson(),
@@ -163,7 +163,7 @@ private void SetReportInformation()
163163
Uuid = Report.Uuid;
164164
Timestamp = Report.Timestamp;
165165
LangVersion = "Mono/IL2CPP";
166-
AgentVersion = "1.1.2";
166+
AgentVersion = "1.1.3";
167167
Classifier = Report.ExceptionTypeReport ? new[] { Report.Classifier } : null;
168168
}
169169
}

0 commit comments

Comments
 (0)