diff --git a/build.sbt b/build.sbt index b81ff00..42c5673 100644 --- a/build.sbt +++ b/build.sbt @@ -41,7 +41,7 @@ lazy val toolkitTest = crossProject(JVMPlatform, JSPlatform, NativePlatform) "org.typelevel" %%% "cats-core" % "2.11.0", "org.typelevel" %%% "cats-effect-testkit" % "3.6.0", "org.scalameta" %%% "munit" % "1.0.0", // not % Test, on purpose :) - "org.typelevel" %%% "munit-cats-effect" % "2.0.0" + "org.typelevel" %%% "munit-cats-effect" % "2.1.0" ), mimaPreviousArtifacts := Set() ) @@ -51,7 +51,7 @@ lazy val tests = crossProject(JVMPlatform, JSPlatform, NativePlatform) .settings( name := "tests", libraryDependencies ++= Seq( - "org.typelevel" %%% "munit-cats-effect" % "2.0.0" % Test, + "org.typelevel" %%% "munit-cats-effect" % "2.1.0" % Test, "co.fs2" %%% "fs2-io" % "3.11.0" % Test, "org.virtuslab.scala-cli" %% "cli" % "1.5.4" cross (CrossVersion.for2_13Use3) ),