Skip to content

Commit

Permalink
Update utest to 0.8.4
Browse files Browse the repository at this point in the history
  • Loading branch information
scala-steward-bot authored and xuwei-k committed Aug 6, 2024
1 parent 522632a commit a7ee4db
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ doctestTestFramework := DoctestTestFramework.Minitest
If you are using [``µTest``](https://github.com/com-lihaoyi/utest), add the following lines to your ``build.sbt``:
```scala
libraryDependencies ++= Seq(
"com.lihaoyi" %% "utest" % "0.8.3" % Test
"com.lihaoyi" %% "utest" % "0.8.4" % Test
)

doctestTestFramework := DoctestTestFramework.MicroTest
Expand Down Expand Up @@ -130,7 +130,7 @@ shown in the example below which uses ``uTest`` with property checks, which requ

```scala
libraryDependencies ++= Seq(
"com.lihaoyi" %% "utest" % "0.8.3" % Test,
"com.lihaoyi" %% "utest" % "0.8.4" % Test,
"org.scalatest" %% "scalatest" % "3.0.9" % Test,
"org.scalacheck" %% "scalacheck" % "1.17.0" % Test
)
Expand Down
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ lazy val root = (project in file(".")).settings(
"commons-io" % "commons-io" % "2.16.1",
"org.apache.commons" % "commons-lang3" % "3.15.0",
"org.scalameta" %% "scalameta" % "4.9.7",
"com.lihaoyi" %% "utest" % "0.8.3" % Test,
"com.lihaoyi" %% "utest" % "0.8.4" % Test,
"org.scalatest" %% "scalatest-funspec" % "3.2.18" % Test,
"org.scalatestplus" %% "scalacheck-1-17" % "3.2.18.0" % Test,
"org.specs2" %% "specs2-scalacheck" % "4.20.8" % Test,
Expand Down
2 changes: 1 addition & 1 deletion src/sbt-test/sbt-doctest/html-entities/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Test / scalacOptions -= "-Ywarn-dead-code"

// Declares scalatest, scalacheck, minitest and utest dependencies explicitly.
libraryDependencies ++= Seq(
"com.lihaoyi" %% "utest" % "0.8.3" % Test,
"com.lihaoyi" %% "utest" % "0.8.4" % Test,
"org.scalatest" %% "scalatest-funspec" % "3.2.18" % Test,
"org.scalatestplus" %% "scalacheck-1-17" % "3.2.18.0" % Test,
"org.scalacheck" %% "scalacheck" % "1.17.0" % Test,
Expand Down
2 changes: 1 addition & 1 deletion src/sbt-test/sbt-doctest/only-code-blocks/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Test / scalacOptions -= "-Ywarn-dead-code"

// Declares scalatest, scalacheck, minitest and utest dependencies explicitly.
libraryDependencies ++= Seq(
"com.lihaoyi" %% "utest" % "0.8.3" % Test,
"com.lihaoyi" %% "utest" % "0.8.4" % Test,
"org.scalatest" %% "scalatest-funspec" % "3.2.18" % Test,
"org.scalatestplus" %% "scalacheck-1-17" % "3.2.18.0" % Test,
"org.scalacheck" %% "scalacheck" % "1.17.0" % Test,
Expand Down
2 changes: 1 addition & 1 deletion src/sbt-test/sbt-doctest/simple/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Test / scalacOptions -= "-Ywarn-dead-code"

// Declares scalatest, scalacheck, minitest and utest dependencies explicitly.
libraryDependencies ++= Seq(
"com.lihaoyi" %% "utest" % "0.8.3" % Test,
"com.lihaoyi" %% "utest" % "0.8.4" % Test,
"org.scalatest" %% "scalatest-funspec" % "3.2.18" % Test,
"org.scalatestplus" %% "scalacheck-1-17" % "3.2.18.0" % Test,
"org.scalacheck" %% "scalacheck" % "1.17.0" % Test,
Expand Down

0 comments on commit a7ee4db

Please sign in to comment.