Skip to content

Commit 07b3c7b

Browse files
committed
Bump sdk version and update Changelog
1 parent 6405e83 commit 07b3c7b

File tree

5 files changed

+9
-5
lines changed

5 files changed

+9
-5
lines changed

Backtrace.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
Pod::Spec.new do |s|
1010

1111
s.name = "Backtrace"
12-
s.version = "2.0.7"
12+
s.version = "2.0.8"
1313
s.swift_version = '5'
1414
s.summary = "Backtrace's integration with iOS, macOS and tvOS"
1515
s.description = "Reliable crash and hang reporting for iOS, macOS and tvOS."

Backtrace.xcodeproj/project.pbxproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3430,7 +3430,7 @@
34303430
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
34313431
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
34323432
MACOSX_DEPLOYMENT_TARGET = 10.13;
3433-
MARKETING_VERSION = 2.0.7;
3433+
MARKETING_VERSION = 2.0.8;
34343434
STRIP_STYLE = debugging;
34353435
STRIP_SWIFT_SYMBOLS = NO;
34363436
SWIFT_VERSION = 5.0;
@@ -3444,7 +3444,7 @@
34443444
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
34453445
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
34463446
MACOSX_DEPLOYMENT_TARGET = 10.13;
3447-
MARKETING_VERSION = 2.0.7;
3447+
MARKETING_VERSION = 2.0.8;
34483448
STRIP_STYLE = debugging;
34493449
STRIP_SWIFT_SYMBOLS = NO;
34503450
SWIFT_VERSION = 5.0;

CHANGELOG.md

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

3+
## Version 2.0.8
4+
- Fixes CoreData swift/objc attributes Interoperability (#149)
5+
- Updates Transformer class to use NSSecureUnarchiveFromData secure coding (#150)
6+
- Updates PersistentRepository to safely perform concurrent Core Data operations (#151)
7+
38
## Version 2.0.7
49
- Adds explicit BacktraceResources-Info.plist
510

Sources/Features/Attributes/DefaultAttributes.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ struct LibInfo: AttributesSource {
200200
private static let applicationGuidKey = "backtrace.unique.user.identifier"
201201
private static let applicationLangName = "backtrace-cocoa"
202202

203-
var backtraceVersion = "2.0.7"
203+
var backtraceVersion = "2.0.8"
204204

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

Sources/Features/Repository/PersistentRepository.swift

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,6 @@ extension PersistentRepository: Repository {
133133
try backgroundContext.save()
134134
}
135135
// File storage outside the Core Data backgroundContext (optional concurrency).
136-
// TODO: Verify AttributesStorage for concurrency
137136
try AttributesStorage.store(resource.attributes, fileName: resource.identifier.uuidString)
138137
}
139138

0 commit comments

Comments
 (0)