Skip to content

v1.2.0

Compare
Choose a tag to compare
@Revolucent Revolucent released this 04 Jun 20:33
· 439 commits to master since this release

There is a minor breaking changing between 1.2.0 and previous versions. It is so minor that I didn't feel a new major version was warranted.

NSManagedObject subclasses must now implement the ManagedObjectType protocol in order to participate in CDQI.

In most cases, you can simply say:

class Employee : NSManagedObject, ManagedObjectType {
    @NSManaged var attribute: String
}

Read the README for more on ManagedObjectType.