Skip to content

Commit 835d7d6

Browse files
authored
Merge #134: update munit to 1.0.1
2 parents 4d19a7c + 8ca8278 commit 835d7d6

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

build.sbt

+6-5
Original file line numberDiff line numberDiff line change
@@ -26,17 +26,18 @@ ThisBuild / crossScalaVersions := Seq(
2626

2727
lazy val root = tlCrossRootProject.aggregate(lib)
2828

29-
lazy val munitVersion = "1.0.0"
30-
lazy val scalacheckVersion = "1.18.0"
29+
lazy val munitVersion = "1.0.1"
30+
lazy val scalacheckVersion = "1.18.0"
31+
lazy val munitScalacheckVersion = "1.0.0"
3132

3233
lazy val lib = crossProject(JVMPlatform, JSPlatform)
3334
.crossType(CrossType.Pure)
3435
.in(file("lib"))
3536
.settings(
3637
name := "scalac-options",
3738
libraryDependencies ++= Seq(
38-
"org.scalameta" %%% "munit" % munitVersion % Test,
39-
"org.scalacheck" %%% "scalacheck" % scalacheckVersion % Test,
40-
"org.scalameta" %%% "munit-scalacheck" % munitVersion % Test
39+
"org.scalameta" %%% "munit" % munitVersion % Test,
40+
"org.scalacheck" %%% "scalacheck" % scalacheckVersion % Test,
41+
"org.scalameta" %%% "munit-scalacheck" % munitScalacheckVersion % Test
4142
)
4243
)

0 commit comments

Comments
 (0)