Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ object Dependencies {
lazy val http4sCore = Def.setting("org.http4s" %%% "http4s-core" % "0.23.34")
lazy val http4sEmber =
Def.setting("org.http4s" %%% "http4s-ember-client" % "0.23.34")
lazy val munit = Def.setting("org.scalameta" %%% "munit" % "1.3.0")
lazy val munit = Def.setting("org.scalameta" %%% "munit" % "1.3.2")
lazy val munitScalaCheck =
Def.setting("org.scalameta" %%% "munit-scalacheck" % "1.3.0")
Comment on lines +25 to 27

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

The munit-scalacheck dependency should be updated to 1.3.2 to match the munit version. Keeping these dependencies in sync prevents potential binary compatibility issues and runtime errors, as they are released together as part of the same suite.

Suggested change
lazy val munit = Def.setting("org.scalameta" %%% "munit" % "1.3.2")
lazy val munitScalaCheck =
Def.setting("org.scalameta" %%% "munit-scalacheck" % "1.3.0")
lazy val munit = Def.setting("org.scalameta" %%% "munit" % "1.3.2")
lazy val munitScalaCheck =
Def.setting("org.scalameta" %%% "munit-scalacheck" % "1.3.2")
References
  1. When updating library versions, ensure that all related libraries are updated to the same version to prevent potential binary compatibility issues or runtime errors.

lazy val paiges = Def.setting("org.typelevel" %%% "paiges-core" % "0.4.4")
Expand Down
Loading