Skip to content

Commit 9259cd8

Browse files
committed
0.9.1
1 parent 0155680 commit 9259cd8

File tree

1 file changed

+12
-6
lines changed

1 file changed

+12
-6
lines changed

readme.md

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
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

9394
testFrameworks += new TestFramework("utest.runner.Framework")
9495
```
9596

9697
Or 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

102103
def testFrameworks = Seq("utest.runner.Framework")
103104
```
@@ -1490,6 +1491,11 @@ libraries are currently at.
14901491
Changelog
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+
14931499
0.9.0
14941500
-----
14951501

0 commit comments

Comments
 (0)