Skip to content

Release 2.0.4 #130

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jun 26, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Backtrace.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
Pod::Spec.new do |s|

s.name = "Backtrace"
s.version = "2.0.3"
s.version = "2.0.4"
s.swift_version = '5'
s.summary = "Backtrace's integration with iOS, macOS and tvOS"
s.description = "Reliable crash and hang reporting for iOS, macOS and tvOS."
Expand Down
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Backtrace Cocoa Release Notes

## Version 2.0.4
- Upgrades PLCrashReporter
- Adds scoped attributes to PLCrashreport
- Renames attributes and adds them as default
- Adds extension to uploaded attachment
- Standardizes system attributes
- Updates FaultMessage Attribute to return Termination Signal name
- Upgrades COCOAPODS to ver 1.15.2

## Version 2.0.3
- Added PrivacyInfo.xcprivacy

Expand Down
2 changes: 1 addition & 1 deletion Sources/Features/Attributes/DefaultAttributes.swift
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ struct LibInfo: AttributesSource {
private static let applicationGuidKey = "backtrace.unique.user.identifier"
private static let applicationLangName = "backtrace-cocoa"

var backtraceVersion = "2.0.3"
var backtraceVersion = "2.0.4"

var immutable: [String: Any?] {
return ["guid": LibInfo.guid(store: UserDefaultsStore.self).uuidString,
Expand Down
Loading