Releases: stringbean/scala-xml-compare
Releases · stringbean/scala-xml-compare
v2.0.0
- Diff options are now encapsulated in a
DiffOptions
object. - Version updates:
scala-xml
: 1.2.0 → 1.3.0- scalatest: 3.0.8 → 3.1.2
- specs2: 4.7.0 → 4.9.4
Configuring diff options will need to be changed from:
XmlCompare.compare(left, right, Set(IgnoreNamespacePrefix, IgnoreChildOrder))
to:
XmlCompare.compare(left, right, DiffOptions(IgnoreNamespacePrefix, IgnoreChildOrder))
// or:
XmlCompare.compare(left, right, DiffOptions.default & IgnoreChildOrder)
v1.2.0
v1.1.0
- Element attributes are now compared.
- Added
StrictAttributeOrdering
option.
v1.0.4
- Re-release of 1.0.3 with signing re-enabled.
v1.0.3
- Build process updates.
v1.0.2
Re-release of 1.0.1:
- Documentation fixes.
- Handles inconsistencies in scala-xml around Text and Atom[String] nodes.
- Support Scala 2.13.0
v1.0.1
Do not use: release failed to publish correctly.
- Documentation fixes.
- Handles inconsistencies in
scala-xml
aroundText
andAtom[String]
nodes. - Support Scala 2.13.0
v1.0.0
Initial stable release.
- Adds support for overriding diff options in Scalatest & specs2.
- Scaladocs for main code.
- Include different path in match errors.
v0.0.3
- Update dependencies
- Add support for Scala 2.13.0-M5