From eb406631dbfbe67ccbed478f0f21fa0ebddf0825 Mon Sep 17 00:00:00 2001 From: "typelevel-steward[bot]" <106827141+typelevel-steward[bot]@users.noreply.github.com> Date: Tue, 21 Jan 2025 20:06:14 +0000 Subject: [PATCH] Update munit to 1.1.0 --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index 1b7078c..c739712 100644 --- a/build.sbt +++ b/build.sbt @@ -27,7 +27,7 @@ lazy val tests = crossProject(JSPlatform, JVMPlatform, NativePlatform) .settings( name := "tests", scalacOptions := scalacOptions.value.filterNot(_ == "-source:3.0-migration"), - libraryDependencies += "org.scalameta" %%% "munit" % "1.0.4" % Test, + libraryDependencies += "org.scalameta" %%% "munit" % "1.1.0" % Test, libraryDependencies ++= { if (tlIsScala3.value) Nil else List("org.scala-lang" % "scala-reflect" % scalaVersion.value % Provided) }