This repository has been archived by the owner on Jan 24, 2025. It is now read-only.
v0.6.0
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))