Skip to content

v0.13

Compare
Choose a tag to compare
@SQiShER SQiShER released this 30 Jul 23:01
· 273 commits to master since this release

Features

  • Objects can now provide alternative versions of themselves for equalsOnly comparison by simply providing the name of a equalsOnlyValueProvider method. The values returned by this method will then be compared via equals method. Thanks to j1ee for adding this feature. For some more detailed examples, take a look at this Spock specification. [#69]
  • Equality of objects implementing Comparable can now also be checked via compareTo method, by configuring them as compareToOnlyType. Thanks to Jean-Eudes and jlrigau for adding this feature. For some more detailed examples, take a look at this Spock specification [#67]

Bugfixes

  • Explicitly including a property now implicitly includes its children as well. [#70]
  • BigDecimal is now compared via compareTo instead of equals. [#67]

Improvements

  • Added TravisCI support. Because it's awesome!