Skip to content

Commit

Permalink
Fix MiMa
Browse files Browse the repository at this point in the history
  • Loading branch information
lolgab committed Aug 4, 2024
1 parent 8fe382b commit b495f9c
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,13 @@ lazy val commonJsSettings = Seq(
doctestGenTests := Seq.empty
)

// cats-mtl 1.5.0 switches to Scala Native 0.5.
// Therefore `tlVersionIntroduced` should be reset to 1.5.0 for all scala versions in all native cross-projects.
val commonNativeTlVersionIntroduced = List("2.12", "2.13", "3").map(_ -> "1.5.0").toMap

lazy val commonNativeSettings = Seq(
doctestGenTests := Seq.empty,
tlVersionIntroduced := List("2.12", "2.13", "3").map(_ -> "1.3.0").toMap
tlVersionIntroduced := commonNativeTlVersionIntroduced
)

val CatsVersion = "2.12.0"
Expand Down

0 comments on commit b495f9c

Please sign in to comment.