Skip to content

v0.6.0

Compare
Choose a tag to compare
@ghostbuster91 ghostbuster91 released this 31 Oct 12:31
· 219 commits to master since this release

Changes:

  • Diffx is now back invariant. This was a major blocker in scala3 migration.
  • Deprecate scalatest module. Syntax like a should matchTo b is not possible in scalatest with having diff tc invariant.
  • Add scalatest-should module
  • Add scalatest-must module

Migration guide:
scalatest module is now deprecated and code which worked previously can no longer compile.
E.g.
Option(1) should matchTo(Some(1)).

Instead use scalatest-should or scalatest-must module and migrate to the new assertion syntax:
Option(1) shouldMatchTo(Some(1))
or
Option(1) mustMatchTo(Some(1))