From 7e3f2c51b05db0f13c2386b3f6c26b821c538c7d Mon Sep 17 00:00:00 2001 From: "typelevel-steward[bot]" <106827141+typelevel-steward[bot]@users.noreply.github.com> Date: Tue, 7 Jan 2025 12:13:25 +0000 Subject: [PATCH] Update munit to 1.0.4 --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index 2031058..450ff1b 100644 --- a/build.sbt +++ b/build.sbt @@ -37,7 +37,7 @@ lazy val core = crossProject(JVMPlatform, JSPlatform, NativePlatform) name := "twiddles-core", libraryDependencies ++= Seq( "org.typelevel" %%% "cats-core" % "2.12.0", - "org.scalameta" %%% "munit" % "1.0.1" + "org.scalameta" %%% "munit" % "1.0.4" ) ++ (if (scalaVersion.value.startsWith("2.")) Seq("com.chuusai" %%% "shapeless" % "2.3.12") else Nil), scalacOptions := scalacOptions.value.filterNot(_.startsWith("-source:"))