Skip to content
Open
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 @@ -51,12 +51,12 @@ lazy val root = project
unusedCompileDependenciesFilter -= moduleFilter("org.scala-js", "scalajs-library")
)

val zioVersion = "2.1.14"
val catsVersion = "2.12.0"
val catsEffectVersion = "3.5.7"
val catsMtlVersion = "1.5.0"
val zioVersion = "2.1.22"
val catsVersion = "2.13.0"
val catsEffectVersion = "3.6.3"
val catsMtlVersion = "1.6.0"
val disciplineScalaTestVersion = "2.3.0"
val fs2Version = "3.11.0"
val fs2Version = "3.12.2"
val scalaJavaTimeVersion = "2.6.0"

lazy val zioInteropTracer = crossProject(JSPlatform, JVMPlatform)
Expand Down
4 changes: 2 additions & 2 deletions project/BuildHelper.scala
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import sbtbuildinfo._
import BuildInfoKeys._

object BuildHelper {
val testDeps = Seq("org.scalacheck" %% "scalacheck" % "1.18.1" % Test)
val testDeps = Seq("org.scalacheck" %% "scalacheck" % "1.19.0" % Test)

val Scala212 = "2.12.20"
val Scala213 = "2.13.16"
Expand Down Expand Up @@ -93,7 +93,7 @@ object BuildHelper {
scalacOptions ++= stdOptions ++ extraOptions(scalaVersion.value, optimize = !isSnapshot.value),
libraryDependencies ++= testDeps ++ {
if (CrossVersion.partialVersion(scalaVersion.value).exists(_._1 == 2))
Seq(compilerPlugin("org.typelevel" % "kind-projector" % "0.13.3") cross CrossVersion.full)
Seq(compilerPlugin("org.typelevel" % "kind-projector" % "0.13.4") cross CrossVersion.full)
else Seq.empty
},
Test / parallelExecution := true,
Expand Down
6 changes: 3 additions & 3 deletions project/plugins.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@ addSbtPlugin("dev.zio" % "zio-sbt-website" % zioSbtVersion)
addSbtPlugin("dev.zio" % "zio-sbt-ci" % zioSbtVersion)
addSbtPlugin("dev.zio" % "zio-sbt-ecosystem" % zioSbtVersion)

addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.17.0")
addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.20.1")
addSbtPlugin("org.portable-scala" % "sbt-scalajs-crossproject" % "1.3.2")
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.5.0")
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.5.6")
addSbtPlugin("com.eed3si9n" % "sbt-buildinfo" % "0.13.1")
addSbtPlugin("org.scoverage" % "sbt-scoverage" % "2.4.2")
addSbtPlugin("com.thoughtworks.sbt-api-mappings" % "sbt-api-mappings" % "3.0.2")
addSbtPlugin("com.github.cb372" % "sbt-explicit-dependencies" % "0.3.1")
addSbtPlugin("ch.epfl.scala" % "sbt-bloop" % "2.0.5")
addSbtPlugin("ch.epfl.scala" % "sbt-bloop" % "2.0.17")
addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.11.2")
addSbtPlugin("com.timushev.sbt" % "sbt-updates" % "0.6.4")
Loading