All Versions
13
Latest Version
Avg Release Cycle
120 days
Latest Release
1297 days ago

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
    • โž• Adds a name to the background context to make sure it only listens to saves on it. #112 by @Kmohamed
  • 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, 2017

    Breaking change

    • ๐Ÿ”„ Changed drop from throwable method to an async one, also we removed forceDrop since now you can do dropWithCompletion from Objective-C.

    Before:

    try drop()
    

    Now:

    drop(completion: ((\_ error: NSError?) -\> Void)? = nil)
    

    Objective-C:

    [self.dataStack dropWithCompletion:nil];