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.1")

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

When updating munit to 1.3.1, the companion library munit-scalacheck (defined on lines 26-27) should also be updated to 1.3.1 to ensure version alignment and avoid potential binary compatibility or classpath issues during testing.

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 munitScalaCheck =
Def.setting("org.scalameta" %%% "munit-scalacheck" % "1.3.0")
lazy val paiges = Def.setting("org.typelevel" %%% "paiges-core" % "0.4.4")
Expand Down
Loading