Skip to content

Commit

Permalink
Update utest to 0.7.10 (#1321)
Browse files Browse the repository at this point in the history
Pull request: #1321
  • Loading branch information
scala-steward committed May 14, 2021
1 parent 31bd29e commit e4bac71
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build.sc
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ object Deps {
def scalacScoveragePlugin = ivy"org.scoverage::scalac-scoverage-plugin:1.4.1"
val sourcecode = ivy"com.lihaoyi::sourcecode:0.2.7"
val upickle = ivy"com.lihaoyi::upickle:1.3.12"
val utest = ivy"com.lihaoyi::utest:0.7.9"
val utest = ivy"com.lihaoyi::utest:0.7.10"
val windowsAnsi = ivy"io.github.alexarchambault.windows-ansi:windows-ansi:0.0.3"
val zinc = ivy"org.scala-sbt::zinc:1.5.3"
val bsp = ivy"ch.epfl.scala:bsp4j:2.0.0-M13"
Expand Down
2 changes: 1 addition & 1 deletion example/example-3/build.sc
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import mill._, scalalib._
object foo extends ScalaModule{
def scalaVersion = "2.13.2"
object test extends Tests{
def ivyDeps = Agg(ivy"com.lihaoyi::utest:0.7.9")
def ivyDeps = Agg(ivy"com.lihaoyi::utest:0.7.10")
def testFrameworks = Seq("utest.runner.Framework")
}
}
2 changes: 1 addition & 1 deletion scalajslib/test/src/MultiModuleTests.scala
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ object MultiModuleTests extends TestSuite {
override def mainClass = Some("Main")
object test extends Tests {
def testFrameworks = Seq("utest.runner.Framework")
override def ivyDeps = Agg(ivy"com.lihaoyi::utest::0.7.9")
override def ivyDeps = Agg(ivy"com.lihaoyi::utest::0.7.10")
}
}

Expand Down

0 comments on commit e4bac71

Please sign in to comment.