Skip to content

Releases: spnkr/ActiveCoreData

0.4.2

29 Dec 16:43
7eb9cf3
Compare
Choose a tag to compare

What's Changed

Shortcut for adding all ManagedObject extensions by @spnkr in #2

Added a less verbose way of importing all extensions to an NSManagedObject:

public class Drawing: NSManagedObject { }

extension Drawing: ManagedObjectPlus { }

You can still import just the features you want to use by replacing ManagedObjectPlus with one or more of the available ManagedObject* protocols:

public class Drawing: NSManagedObject { }

extension Drawing: ManagedObjectDeletable,
                   ManagedObjectCountable,
                   ManagedObjectSearchable,
                   ManagedObjectFindOrCreateBy {
                   
}

Full Changelog: 0.4.1...0.4.2

0.4.1

14 Dec 01:50
9c40a0e
Compare
Choose a tag to compare

Added example app.

0.4

14 Dec 01:49
Compare
Choose a tag to compare
0.4

Add sort descriptors to ManagedObjectSearchable.searchFor.

0.3

19 Oct 08:45
Compare
Choose a tag to compare
0.3

New naming convention

0.2

19 Oct 08:32
Compare
Choose a tag to compare
0.2

Added a readme

0.1

19 Oct 07:25
Compare
Choose a tag to compare
0.1

First release