Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update dependency org.scalameta:munit to v1.0.2 #1320

Merged
merged 1 commit into from
Sep 27, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -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.2" % Test,
testFrameworks += new TestFramework("munit.Framework")
)
.jsSettings(
Expand All @@ -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.2" % Test,
testFrameworks += new TestFramework("munit.Framework")
)
.jsSettings(
Expand All @@ -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.2" % Test,
testFrameworks += new TestFramework("munit.Framework")
)
.jsSettings(
Expand Down Expand Up @@ -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.2" % Test,
testFrameworks += new TestFramework("munit.Framework")
)
.jsSettings(
Expand All @@ -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.2" % Test,
testFrameworks += new TestFramework("munit.Framework")
)
.jsSettings(
Expand Down Expand Up @@ -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.2" % Test,
testFrameworks += new TestFramework("munit.Framework")
)
.jsSettings(
Expand All @@ -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.2" % Test,
libraryDependencies += ("org.scala-js" %%% "scalajs-java-securerandom" % "1.0.0" % Test)
.cross(CrossVersion.for3Use2_13),
testFrameworks += new TestFramework("munit.Framework"),
Expand Down Expand Up @@ -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.2" % Test,
testFrameworks += new TestFramework("munit.Framework")
)
.dependsOn(coreJVM, codecJVM)