Skip to content

Releases: Prosumma/CoreDataQueryInterface

v3.0

31 Dec 06:25
Compare
Choose a tag to compare
Cocoapods

Fixed Iteration Bug

08 Oct 00:11
Compare
Choose a tag to compare

Unfortunately there was a conflict with SequenceType in Swift 2.0 which the unit tests didn't catch. I didn't notice it until I had to integrate this version into a working project.

v2.0.2

19 Sep 23:30
Compare
Choose a tag to compare
CocoaPods

v2.0.1

18 Sep 22:28
Compare
Choose a tag to compare
  • Finally got Travis CI working. All builds pass.

Xcode 7.0 / Swift 2.0

18 Sep 21:10
Compare
Choose a tag to compare
v2.0

CocoaPods

Final Swift 1.2 Release

18 Sep 20:54
Compare
Choose a tag to compare

This is the final release of the Swift 1.2 codebase.

v1.2.3

05 Jun 01:25
Compare
Choose a tag to compare

Bug-fix release.

v1.2.2

04 Jun 23:52
Compare
Choose a tag to compare

Far better operators. I really screwed that up on the last release because I tested only with literals.

v1.2.1

04 Jun 22:12
Compare
Choose a tag to compare

Last-minute change to the signatures of Attribute and AttributeType to make implementation easier.

v1.2.0

04 Jun 20:33
Compare
Choose a tag to compare

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.