From bf818c209c1aeebe647409588327d8b2ea49d9d8 Mon Sep 17 00:00:00 2001 From: "typelevel-steward[bot]" <106827141+typelevel-steward[bot]@users.noreply.github.com> Date: Mon, 12 Aug 2024 20:06:43 +0000 Subject: [PATCH 1/2] Update munit to 1.0.1 --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index 289644e..1e95379 100644 --- a/build.sbt +++ b/build.sbt @@ -26,7 +26,7 @@ ThisBuild / crossScalaVersions := Seq( lazy val root = tlCrossRootProject.aggregate(lib) -lazy val munitVersion = "1.0.0" +lazy val munitVersion = "1.0.1" lazy val scalacheckVersion = "1.18.0" lazy val lib = crossProject(JVMPlatform, JSPlatform) From 8ca827808092c5d2fcf68c2ffd4ae5d9e3d1ddcb Mon Sep 17 00:00:00 2001 From: satorg Date: Wed, 14 Aug 2024 18:21:41 -0700 Subject: [PATCH 2/2] disunite munit and munit-scalacheck versions --- build.sbt | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/build.sbt b/build.sbt index 1e95379..4d1278f 100644 --- a/build.sbt +++ b/build.sbt @@ -26,8 +26,9 @@ ThisBuild / crossScalaVersions := Seq( lazy val root = tlCrossRootProject.aggregate(lib) -lazy val munitVersion = "1.0.1" -lazy val scalacheckVersion = "1.18.0" +lazy val munitVersion = "1.0.1" +lazy val scalacheckVersion = "1.18.0" +lazy val munitScalacheckVersion = "1.0.0" lazy val lib = crossProject(JVMPlatform, JSPlatform) .crossType(CrossType.Pure) @@ -35,8 +36,8 @@ lazy val lib = crossProject(JVMPlatform, JSPlatform) .settings( name := "scalac-options", libraryDependencies ++= Seq( - "org.scalameta" %%% "munit" % munitVersion % Test, - "org.scalacheck" %%% "scalacheck" % scalacheckVersion % Test, - "org.scalameta" %%% "munit-scalacheck" % munitVersion % Test + "org.scalameta" %%% "munit" % munitVersion % Test, + "org.scalacheck" %%% "scalacheck" % scalacheckVersion % Test, + "org.scalameta" %%% "munit-scalacheck" % munitScalacheckVersion % Test ) )