1- µTest 0.9.0
1+ µTest 0.9.1
22====================================================================================================
33
44
@@ -62,7 +62,8 @@ Contents
6262 - [ assertEventually and assertContinually] ( #asserteventually-and-assertcontinually )
6363 - [ assertMatch] ( #assert-match )
6464 - [ assertCompileError] ( #assertcompileerror )
65- - [ assertGoldenLiteral and assertGoldenFile] ( #assertgoldenliteral-and-assertgoldenfile )
65+ - [ assertGoldenLiteral] ( #assertgoldenliteral )
66+ - [ assertGoldenFile] ( #assertgoldenfile )
6667- [ Test Utilities] ( #test-utilities )
6768 - [ TestPath] ( #testpath )
6869 - [ Local Retries] ( #local-retries )
@@ -87,17 +88,17 @@ can immediately begin defining and running tests programmatically.
8788
8889
8990``` scala
90- libraryDependencies += " com.lihaoyi" %% " utest" % " 0.9.0 " % " test" // Scala-JVM
91- libraryDependencies += " com.lihaoyi" %%% " utest" % " 0.9.0 " % " test" // Scala.js or Scala-Native
91+ libraryDependencies += " com.lihaoyi" %% " utest" % " 0.9.1 " % " test" // Scala-JVM
92+ libraryDependencies += " com.lihaoyi" %%% " utest" % " 0.9.1 " % " test" // Scala.js or Scala-Native
9293
9394testFrameworks += new TestFramework (" utest.runner.Framework" )
9495```
9596
9697Or Mill:
9798
9899``` scala
99- def mvnDeps = Seq (mvn " com.lihaoyi::utest:0.9.0 " ) // Scala-JVM
100- def mvnDeps = Seq (mvn " com.lihaoyi::utest::0.9.0 " ) // Scala.js or Scala-Native
100+ def mvnDeps = Seq (mvn " com.lihaoyi::utest:0.9.1 " ) // Scala-JVM
101+ def mvnDeps = Seq (mvn " com.lihaoyi::utest::0.9.1 " ) // Scala.js or Scala-Native
101102
102103def testFrameworks = Seq (" utest.runner.Framework" )
103104```
@@ -1490,6 +1491,11 @@ libraries are currently at.
14901491Changelog
14911492=========
14921493
1494+ 0.9.1
1495+ -----
1496+
1497+ * Don't truncate large data in golden testing [ #399 ] ( https://github.com/com-lihaoyi/utest/pull/399 )
1498+
149314990.9.0
14941500-----
14951501
0 commit comments