Skip to content

Commit

Permalink
Update for ZIO 2.1.14
Browse files Browse the repository at this point in the history
  • Loading branch information
calvinlfer committed Dec 19, 2024
1 parent be8471b commit 3ecd8a6
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -51,10 +51,10 @@ lazy val root = project
unusedCompileDependenciesFilter -= moduleFilter("org.scala-js", "scalajs-library")
)

val zioVersion = "2.1.13"
val zioVersion = "2.1.14"
val catsVersion = "2.12.0"
val catsEffectVersion = "3.5.7"
val catsMtlVersion = "1.4.0"
val catsMtlVersion = "1.5.0"
val disciplineScalaTestVersion = "2.3.0"
val fs2Version = "3.11.0"
val scalaJavaTimeVersion = "2.6.0"
Expand Down
2 changes: 1 addition & 1 deletion 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.0" % Test)
val testDeps = Seq("org.scalacheck" %% "scalacheck" % "1.18.1" % Test)

val Scala212 = "2.12.20"
val Scala213 = "2.13.15"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -359,7 +359,7 @@ private abstract class ZioConcurrent[R, E, E1]
)
.foldCauseZIO(
cause2 => ZIO.failCause(e.foldExit(_ ++ cause2, _ => cause2)),
_ => ZIO.done(e)
_ => e
)
}
}
Expand Down

0 comments on commit 3ecd8a6

Please sign in to comment.