All Versions
13
Latest Version
Avg Release Cycle
120 days
Latest Release
1498 days ago
Changelog History
Page 1
Changelog History
Page 1
-
v8.2.1 Changes
October 06, 2020- ๐ Fixed a warning regarding unused params in method documentation
-
v8.2.0 Changes
October 06, 2020- โก๏ธ Updated to Xcode 12
-
v8.1.0 Changes
October 06, 2020- โก๏ธ Updated to Xcode 12
-
v8.0.2 Changes
February 01, 2018 -
v8.0.1 Changes
November 03, 2017- ๐ Fix issue with callback when dropping persisting stores 150cc72
-
v8.0.0 Changes
September 24, 2017๐ Swift 4 and Xcode 9 support!
-
v7.0.3 Changes
April 27, 2017- ๐ Make persistentStoreCoordinator public
-
v7.0.2 Changes
March 29, 2017- Swift 3.1
-
v7.0.1 Changes
January 04, 2017- ๐ Fix issue with dropping not restoring persistent store coordinator
-
v7.0.0 Changes
January 04, 2017Breaking change
- ๐ Changed
drop
from throwable method to an async one, also we removedforceDrop
since now you can dodropWithCompletion
from Objective-C.
Before:
try drop()
Now:
drop(completion: ((\_ error: NSError?) -\> Void)? = nil)
Objective-C:
[self.dataStack dropWithCompletion:nil];
- ๐ Changed