From 3465ab93e0a89bb7df12330747297cac749db162 Mon Sep 17 00:00:00 2001 From: Melek Ramki Date: Tue, 30 Jul 2024 14:23:15 -0400 Subject: [PATCH] Release 2.0.5 Bump sdk version and update Changelog --- Backtrace.podspec | 2 +- CHANGELOG.md | 4 ++++ Sources/Features/Attributes/DefaultAttributes.swift | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/Backtrace.podspec b/Backtrace.podspec index 6b363e76..e945f2f9 100644 --- a/Backtrace.podspec +++ b/Backtrace.podspec @@ -9,7 +9,7 @@ Pod::Spec.new do |s| s.name = "Backtrace" - s.version = "2.0.4" + s.version = "2.0.5" 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." diff --git a/CHANGELOG.md b/CHANGELOG.md index 54f394ae..1326f491 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Backtrace Cocoa Release Notes +## Version 2.0.5 +- Enables client side unwinding default setting (#134) +- Fixes Cocoapods deployment (#135) + ## Version 2.0.4 - Upgrades PLCrashReporter (#122) - Adds scoped attributes to PLCrashreport (#125) diff --git a/Sources/Features/Attributes/DefaultAttributes.swift b/Sources/Features/Attributes/DefaultAttributes.swift index 4e05f4ff..bc4fff5e 100644 --- a/Sources/Features/Attributes/DefaultAttributes.swift +++ b/Sources/Features/Attributes/DefaultAttributes.swift @@ -200,7 +200,7 @@ struct LibInfo: AttributesSource { private static let applicationGuidKey = "backtrace.unique.user.identifier" private static let applicationLangName = "backtrace-cocoa" - var backtraceVersion = "2.0.4" + var backtraceVersion = "2.0.5" var immutable: [String: Any?] { return ["guid": LibInfo.guid(store: UserDefaultsStore.self).uuidString,