Skip to content

1.6.0

Compare
Choose a tag to compare
@ftchirou ftchirou released this 13 May 11:42
· 11 commits to main since this release
6729efa

What's Changed

  • Add support for testing objects for equality by @ftchirou in #20
Example
class Note: NSManagedObject {
  @NSManaged var attachment: Attachment
}

class Attachment: NSManagedObject, Identifiable {
  @NSManaged var id: String
}

let attachment: Attachment = // ...
let predicate = \Note.attachment == attachment

New Contributors

Full Changelog: 1.5.0...1.6.0