Skip to content
This repository was archived by the owner on Nov 24, 2021. It is now read-only.

Releases: 3lvis/DATAStack

DataStack — 8.2.1

06 Oct 05:01
596695d

Choose a tag to compare

  • Fixed a warning regarding unused params in method documentation

DataStack — 8.2.0

06 Oct 04:48
2fac0fd

Choose a tag to compare

  • Updated to Xcode 12

DataStack — 8.1.0

06 Oct 04:41

Choose a tag to compare

  • Updated to Xcode 12

DATAStack — 8.0.2

01 Feb 06:00

Choose a tag to compare

  • Adds a name to the background context to make sure it only listens to saves on it. #112 by @Kmohamed

DATAStack — 8.0.1

03 Nov 09:54
9f53bac

Choose a tag to compare

  • Fix issue with callback when dropping persisting stores 150cc72

DATAStack — 8.0.0

24 Sep 07:37

Choose a tag to compare

Swift 4 and Xcode 9 support!

DATAStack — 7.0.3

27 Apr 08:47

Choose a tag to compare

  • Make persistentStoreCoordinator public

DATAStack — 7.0.2

29 Mar 05:48

Choose a tag to compare

DATAStack — 7.0.1

04 Jan 12:27

Choose a tag to compare

  • Fix issue with dropping not restoring persistent store coordinator

DATAStack — 7.0.0

04 Jan 10:33

Choose a tag to compare

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];