From 7e5b6f92acc4e7741321a3ce1eefaeb9afa89035 Mon Sep 17 00:00:00 2001 From: danicheg Date: Sat, 25 Jan 2025 10:22:20 +0300 Subject: [PATCH 1/2] Update munit to 1.1.0 --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index 7111c54..65672ed 100644 --- a/build.sbt +++ b/build.sbt @@ -22,7 +22,7 @@ lazy val cross = crossProject(JSPlatform, JVMPlatform, NativePlatform) name := "mouse", libraryDependencies ++= Seq( "org.typelevel" %%% "cats-core" % "2.13.0", - "org.scalameta" %%% "munit" % "1.0.4" % Test, + "org.scalameta" %%% "munit" % "1.1.0" % Test, "org.scalameta" %%% "munit-scalacheck" % "1.0.0" % Test ), developers := List( From e87233443b60904171563ec8bf425cbacfd8e3d5 Mon Sep 17 00:00:00 2001 From: danicheg Date: Sat, 25 Jan 2025 10:22:43 +0300 Subject: [PATCH 2/2] Update munit-scalacheck to 1.1.0 --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index 65672ed..b9edab0 100644 --- a/build.sbt +++ b/build.sbt @@ -23,7 +23,7 @@ lazy val cross = crossProject(JSPlatform, JVMPlatform, NativePlatform) libraryDependencies ++= Seq( "org.typelevel" %%% "cats-core" % "2.13.0", "org.scalameta" %%% "munit" % "1.1.0" % Test, - "org.scalameta" %%% "munit-scalacheck" % "1.0.0" % Test + "org.scalameta" %%% "munit-scalacheck" % "1.1.0" % Test ), developers := List( Developer("benhutchison", "Ben Hutchison", "brhutchison@gmail.com", url = url("https://github.com/benhutchison"))