From 81482c10ad4a03f4e9cdcc9bc9b240b8b21afb95 Mon Sep 17 00:00:00 2001 From: Li Haoyi Date: Mon, 5 Aug 2024 21:32:38 -0700 Subject: [PATCH] 0.8.4 --- readme.md | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/readme.md b/readme.md index 55a4deb..aa14300 100644 --- a/readme.md +++ b/readme.md @@ -1,4 +1,4 @@ -µTest 0.8.3 +µTest 0.8.4 ==================================================================================================== [travis-badge]: https://travis-ci.org/lihaoyi/utest.svg @@ -70,6 +70,9 @@ Contents - [Running uTest Standalone](#running-utest-standalone) - [Why uTest](#why-utest) - [Changelog](#changelog) + - [0.8.4](#084) + - [0.8.3](#083) + - [0.8.2](#082) - [0.8.1](#081) - [0.8.0](#080) - [0.7.11](#0711) @@ -122,7 +125,7 @@ can immediately begin defining and running tests programmatically. ```scala -libraryDependencies += "com.lihaoyi" %% "utest" % "0.8.3" % "test" +libraryDependencies += "com.lihaoyi" %% "utest" % "0.8.4" % "test" testFrameworks += new TestFramework("utest.runner.Framework") ``` @@ -130,7 +133,7 @@ testFrameworks += new TestFramework("utest.runner.Framework") To use it with Scala.js or Scala-Native: ```scala -libraryDependencies += "com.lihaoyi" %%% "utest" % "0.8.3" % "test" +libraryDependencies += "com.lihaoyi" %%% "utest" % "0.8.4" % "test" testFrameworks += new TestFramework("utest.runner.Framework") ``` @@ -1371,6 +1374,11 @@ libraries are currently at. Changelog ========= +0.8.4 +----- + +* Avoid crashing if test logs have invalid ANSI escape codes [#344](https://github.com/com-lihaoyi/utest/pull/344) + 0.8.3 -----