File tree Expand file tree Collapse file tree 5 files changed +9
-5
lines changed Expand file tree Collapse file tree 5 files changed +9
-5
lines changed Original file line number Diff line number Diff line change 99Pod ::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."
Original file line number Diff line number Diff line change 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;
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;
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff 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,
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments