From f506463e1c522d8c3573c94b1b1294b05d8c59ed Mon Sep 17 00:00:00 2001 From: Hiroya Fujinami Date: Fri, 16 Aug 2024 00:36:43 +0000 Subject: [PATCH] Update munit to 1.0.1 --- build.sbt | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/build.sbt b/build.sbt index 69cb4905..451ea2e7 100644 --- a/build.sbt +++ b/build.sbt @@ -223,7 +223,7 @@ lazy val core = crossProject(JVMPlatform, JSPlatform) Test / console / scalacOptions -= "-Wunused", addCompilerPlugin("com.olegpy" %% "better-monadic-for" % "0.3.1"), // Settings for test: - libraryDependencies += "org.scalameta" %%% "munit" % "1.0.0" % Test, + libraryDependencies += "org.scalameta" %%% "munit" % "1.0.1" % Test, testFrameworks += new TestFramework("munit.Framework") ) .jsSettings( @@ -248,7 +248,7 @@ lazy val common = crossProject(JVMPlatform, JSPlatform) libraryDependencies += "org.scala-lang" % "scala-reflect" % scalaVersion.value % Provided, addCompilerPlugin("com.olegpy" %% "better-monadic-for" % "0.3.1"), // Settings for test: - libraryDependencies += "org.scalameta" %%% "munit" % "1.0.0" % Test, + libraryDependencies += "org.scalameta" %%% "munit" % "1.0.1" % Test, testFrameworks += new TestFramework("munit.Framework") ) .jsSettings( @@ -270,7 +270,7 @@ lazy val exec = crossProject(JVMPlatform, JSPlatform) Test / console / scalacOptions -= "-Wunused", addCompilerPlugin("com.olegpy" %% "better-monadic-for" % "0.3.1"), // Settings for test: - libraryDependencies += "org.scalameta" %%% "munit" % "1.0.0" % Test, + libraryDependencies += "org.scalameta" %%% "munit" % "1.0.1" % Test, testFrameworks += new TestFramework("munit.Framework") ) .jsSettings( @@ -316,7 +316,7 @@ lazy val unicode = crossProject(JVMPlatform, JSPlatform) ) }, // Settings for test: - libraryDependencies += "org.scalameta" %%% "munit" % "1.0.0" % Test, + libraryDependencies += "org.scalameta" %%% "munit" % "1.0.1" % Test, testFrameworks += new TestFramework("munit.Framework") ) .jsSettings( @@ -340,7 +340,7 @@ lazy val parse = crossProject(JVMPlatform, JSPlatform) libraryDependencies += "com.lihaoyi" %%% "fastparse" % "3.1.0", addCompilerPlugin("com.olegpy" %% "better-monadic-for" % "0.3.1"), // Settings for test: - libraryDependencies += "org.scalameta" %%% "munit" % "1.0.0" % Test, + libraryDependencies += "org.scalameta" %%% "munit" % "1.0.1" % Test, testFrameworks += new TestFramework("munit.Framework") ) .jsSettings( @@ -368,7 +368,7 @@ lazy val codec = crossProject(JVMPlatform, JSPlatform) libraryDependencies += "io.circe" %%% "circe-core" % "0.14.7", addCompilerPlugin("com.olegpy" %% "better-monadic-for" % "0.3.1"), // Settings for test: - libraryDependencies += "org.scalameta" %%% "munit" % "1.0.0" % Test, + libraryDependencies += "org.scalameta" %%% "munit" % "1.0.1" % Test, testFrameworks += new TestFramework("munit.Framework") ) .jsSettings( @@ -395,7 +395,7 @@ lazy val js = project libraryDependencies += "io.circe" %%% "circe-scalajs" % "0.14.6", addCompilerPlugin("com.olegpy" %% "better-monadic-for" % "0.3.1"), // Settings for test: - libraryDependencies += "org.scalameta" %%% "munit" % "1.0.0" % Test, + libraryDependencies += "org.scalameta" %%% "munit" % "1.0.1" % Test, libraryDependencies += ("org.scala-js" %%% "scalajs-java-securerandom" % "1.0.0" % Test) .cross(CrossVersion.for3Use2_13), testFrameworks += new TestFramework("munit.Framework"), @@ -441,7 +441,7 @@ lazy val cli = project libraryDependencies += "io.circe" %% "circe-parser" % "0.14.7", addCompilerPlugin("com.olegpy" %% "better-monadic-for" % "0.3.1"), // Settings for test: - libraryDependencies += "org.scalameta" %% "munit" % "1.0.0" % Test, + libraryDependencies += "org.scalameta" %% "munit" % "1.0.1" % Test, testFrameworks += new TestFramework("munit.Framework") ) .dependsOn(coreJVM, codecJVM)