From b934dcd3b3aebd77c58a8e5db8fe6372748d0041 Mon Sep 17 00:00:00 2001 From: Scala Steward <43047562+scala-steward@users.noreply.github.com> Date: Wed, 14 Aug 2024 05:05:56 +0200 Subject: [PATCH] Update munit to 1.0.1 (#248) --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index 7cb7e61..4a3ec7c 100644 --- a/build.sbt +++ b/build.sbt @@ -11,7 +11,7 @@ crossScalaVersions := Seq("2.13.14", "2.12.19") libraryDependencies ++= Seq( "org.scala-lang" % "scala-compiler" % scalaVersion.value % "provided", "io.spray" %% "spray-json" % "1.3.6", - "org.scalameta" %% "munit" % "1.0.0" % Test, + "org.scalameta" %% "munit" % "1.0.1" % Test, ) testFrameworks += new TestFramework("munit.Framework")