Skip to content

Releases: ra1028/DifferenceKit

0.3.0

10 Aug 16:54
7ab94c3
Compare
Choose a tag to compare

Breaking change

  • Differentiable.differenceIdentifier is now renamed to identifier.
  • Associated type Differentiable.DifferenceIdentifier is now renamed to Identifier.
  • Differentiable.isUpdated(from:) is now meaning reversed, name has become isContentEqual(to:).

⚠️ isUpdated(from:) became isContentEqual(to:) and the meaning was reversed.
An update is detected by returning false.

func isUpdated(from source: User) -> Bool {
    return name != source.name
}

↓↓↓

func isContentEqual(to source: User) -> Bool {
    return name == source.name
}

0.2.0

05 Aug 17:30
9e76cef
Compare
Choose a tag to compare

Change

  • Support iOS 9.0, tvOS 9.0 (#1)
  • Support macOS, watchOS (#2)

0.1.0

03 Aug 18:10
Compare
Choose a tag to compare

The first release