From ec452a94a4930825344817ad14c250295e055dac Mon Sep 17 00:00:00 2001 From: "typelevel-steward[bot]" <106827141+typelevel-steward[bot]@users.noreply.github.com> Date: Fri, 9 Jun 2023 16:06:50 +0000 Subject: [PATCH] Update munit to 1.0.0-M8 --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index b603295..074d226 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.0-M6" % Test, + libraryDependencies += "org.scalameta" %%% "munit" % "1.0.0-M8" % Test, libraryDependencies ++= { if (tlIsScala3.value) Nil else List("org.scala-lang" % "scala-reflect" % scalaVersion.value % Provided) }