This repository was archived by the owner on Nov 24, 2021. It is now read-only.
  
  
  
  
Releases: 3lvis/DATAStack
Releases · 3lvis/DATAStack
DataStack — 8.2.1
DataStack — 8.2.0
- Updated to Xcode 12
 
DataStack — 8.1.0
- Updated to Xcode 12
 
DATAStack — 8.0.2
DATAStack — 8.0.1
- Fix issue with callback when dropping persisting stores 150cc72
 
DATAStack — 8.0.0
Swift 4 and Xcode 9 support!
DATAStack — 7.0.3
- Make persistentStoreCoordinator public
 
DATAStack — 7.0.2
- Swift 3.1
 
DATAStack — 7.0.1
- Fix issue with dropping not restoring persistent store coordinator
 
DATAStack — 7.0.0
Breaking change
- Changed 
dropfrom throwable method to an async one, also we removedforceDropsince now you can dodropWithCompletionfrom Objective-C. 
Before:
try drop()Now:
drop(completion: ((_ error: NSError?) -> Void)? = nil)Objective-C:
[self.dataStack dropWithCompletion:nil];