From 4f34f3b29b5fa6689e33eb650a33af642e32ba44 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Sat, 14 Sep 2024 13:49:51 +0000 Subject: [PATCH 1/2] Update munit to 1.0.2 --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index abf656f..6aa4826 100644 --- a/build.sbt +++ b/build.sbt @@ -14,7 +14,7 @@ ThisBuild / tlCiReleaseBranches := Nil ThisBuild / circeRootOfCodeCoverage := Some("root") val circeVersion = "0.14.9" -val munitVersion = "1.0.0" +val munitVersion = "1.0.2" val previousCirceJacksonVersion = "0.15.0" val disciplineMunitVersion = "2.0.0" From 26ff8bbdbed69b551609fb847f0fe9c271dec256 Mon Sep 17 00:00:00 2001 From: Erlend Hamnaberg Date: Tue, 29 Oct 2024 19:30:09 +0100 Subject: [PATCH 2/2] munit-scalacheck needs its own versioning --- build.sbt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index d372d8c..e6fe11f 100644 --- a/build.sbt +++ b/build.sbt @@ -15,6 +15,7 @@ ThisBuild / circeRootOfCodeCoverage := Some("root") val circeVersion = "0.14.10" val munitVersion = "1.0.2" +val munitScalacheckVersion = "1.0.0" val previousCirceJacksonVersion = "0.15.0" val disciplineMunitVersion = "2.0.0" @@ -35,7 +36,7 @@ val baseSettings = Seq( "io.circe" %% "circe-testing" % circeVersion % Test, "org.typelevel" %% "discipline-munit" % disciplineMunitVersion % Test, "org.scalameta" %% "munit" % munitVersion % Test, - "org.scalameta" %% "munit-scalacheck" % munitVersion % Test + "org.scalameta" %% "munit-scalacheck" % munitScalacheckVersion % Test ), Compile / unmanagedSourceDirectories += (ThisBuild / baseDirectory).value / "shared/src/main", Test / unmanagedSourceDirectories += (ThisBuild / baseDirectory).value / "shared/src/test",