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

DATAStack — 7.0.0

Compare
Choose a tag to compare
@3lvis 3lvis released this 04 Jan 10:33
· 42 commits to master since this release

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