Skip to content

Commit

Permalink
Merge pull request #2 from calvinlfer/feature/zio2.1.0
Browse files Browse the repository at this point in the history
Feature/zio2.1.0
  • Loading branch information
calvinlfer authored May 9, 2024
2 parents 772233b + 3ede169 commit 7aba6bb
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 6 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,4 @@ test-output/
.idea/
.bsp
.vscode
.history/
6 changes: 3 additions & 3 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.0.22"
val catsVersion = "2.9.0"
val zioVersion = "2.1.0"
val catsVersion = "2.10.0"
val catsEffectVersion = "3.5.4"
val catsMtlVersion = "1.3.0"
val catsMtlVersion = "1.4.0"
val disciplineScalaTestVersion = "2.2.0"
val fs2Version = "3.10.2"
val scalaJavaTimeVersion = "2.5.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.17.0" % Test)
val testDeps = Seq("org.scalacheck" %% "scalacheck" % "1.18.0" % Test)

val Scala212 = "2.12.19"
val Scala213 = "2.13.13"
Expand Down
2 changes: 1 addition & 1 deletion project/build.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
sbt.version=1.9.9
sbt.version=1.10.0
1 change: 1 addition & 0 deletions project/plugins.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,4 @@ addSbtPlugin("de.heikoseeberger" % "sbt-header" %
addSbtPlugin("ch.epfl.scala" % "sbt-bloop" % "1.5.6")
addSbtPlugin("com.geirsson" % "sbt-ci-release" % "1.5.7")
addSbtPlugin("dev.zio" % "zio-sbt-website" % "0.3.8")
addSbtPlugin("com.timushev.sbt" % "sbt-updates" % "0.6.3")
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ private[zio] trait CatsSpecBase

implicit def runtime(implicit ticker: Ticker): Runtime[Any] = {
val tickerExecutor = Executor.fromExecutionContext(ticker.ctx)
val fiberId = FiberId.make(Trace.empty)(Unsafe.unsafe)
val fiberId = FiberId.generate(FiberRefs.empty)(Trace.empty)(Unsafe.unsafe)
val fiberRefs = FiberRefs.empty
.updatedAs(fiberId)(FiberRef.overrideExecutor, Some(tickerExecutor))
.updatedAs(fiberId)(FiberRef.currentBlockingExecutor, tickerExecutor)
Expand Down

0 comments on commit 7aba6bb

Please sign in to comment.