Skip to content
Merged
Show file tree
Hide file tree
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
10 changes: 5 additions & 5 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ lazy val core = crossProject(JVMPlatform, JSPlatform, NativePlatform)
tlVersionIntroduced := List("2.12", "2.13", "3").map(_ -> "0.4.6").toMap
)
.nativeSettings(
tlVersionIntroduced := List("2.12", "2.13", "3").map(_ -> "0.4.8").toMap
tlVersionIntroduced := List("2.12", "2.13", "3").map(_ -> "0.5.0").toMap
)
.settings(
mimaBinaryIssueFilters ++= Seq(
Expand Down Expand Up @@ -56,11 +56,11 @@ lazy val docs = project
.dependsOn(core.jvm)
.enablePlugins(TypelevelSitePlugin)

val catsV = "2.11.0"
val catsEffectV = "3.6.3"
val catsV = "2.13.0"
val catsEffectV = "3.7.0-RC1"

val munitV = "1.0.0"
val munitCatsEffectV = "2.1.0"
val munitV = "1.1.0"
val munitCatsEffectV = "2.2.0-RC1"

val kindProjectorV = "0.13.3"
val betterMonadicForV = "0.3.1"
Expand Down
4 changes: 2 additions & 2 deletions project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
val sbtTypelevelVersion = "0.8.0"

addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.18.2")
addSbtPlugin("org.scala-native" % "sbt-scala-native" % "0.4.17")
addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.19.0")
addSbtPlugin("org.scala-native" % "sbt-scala-native" % "0.5.8")
addSbtPlugin("org.portable-scala" % "sbt-scala-native-crossproject" % "1.3.2")
addSbtPlugin("com.github.cb372" % "sbt-explicit-dependencies" % "0.3.1")
addSbtPlugin("org.typelevel" % "sbt-typelevel" % sbtTypelevelVersion)
Expand Down