From 7a3e18cb5edd8fad019bfa2938357028d56e2a32 Mon Sep 17 00:00:00 2001 From: "typelevel-steward[bot]" <106827141+typelevel-steward[bot]@users.noreply.github.com> Date: Thu, 9 Jul 2026 20:45:10 +0000 Subject: [PATCH] Update munit to 1.3.4 --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index c4469d2..8da4cbc 100644 --- a/build.sbt +++ b/build.sbt @@ -43,7 +43,7 @@ lazy val core = crossProject(JVMPlatform, JSPlatform, NativePlatform) name := "twiddles-core", libraryDependencies ++= Seq( "org.typelevel" %%% "cats-core" % "2.13.0", - "org.scalameta" %%% "munit" % "1.3.0" + "org.scalameta" %%% "munit" % "1.3.4" ) ++ (if (scalaVersion.value.startsWith("2.")) Seq("com.chuusai" %%% "shapeless" % "2.3.13") else Nil), scalacOptions := scalacOptions.value.filterNot(_.startsWith("-source:"))