From 7c2e00d701892e2b6625887eb0bd381597f5bcc6 Mon Sep 17 00:00:00 2001 From: "typelevel-steward[bot]" <106827141+typelevel-steward[bot]@users.noreply.github.com> Date: Wed, 22 May 2024 16:05:33 +0000 Subject: [PATCH] Update munit to 1.0.0 --- build.sbt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/build.sbt b/build.sbt index 829e0966..a9048ad1 100644 --- a/build.sbt +++ b/build.sbt @@ -58,10 +58,10 @@ lazy val commonSettings = Seq( organization := "org.typelevel", libraryDependencies ++= Seq( "org.typelevel" %%% "cats-core" % "2.10.0", - "org.typelevel" %%% "cats-laws" % "2.10.0" % Test, - "org.scalameta" %%% "munit" % "1.0.0-M10" % Test, - "org.typelevel" %%% "discipline-munit" % "2.0.0-M3" % Test, - "org.scala-lang.modules" %%% "scala-collection-compat" % "2.11.0" % Test + "org.typelevel" %%% "cats-laws" % "2.10.0" % Test, + "org.scalameta" %%% "munit" % "1.0.0" % Test, + "org.typelevel" %%% "discipline-munit" % "2.0.0-M3" % Test, + "org.scala-lang.modules" %%% "scala-collection-compat" % "2.11.0" % Test ) )