Skip to content

Commit

Permalink
Dependency updates
Browse files Browse the repository at this point in the history
  • Loading branch information
durban committed Aug 25, 2023
1 parent 85f870f commit 994f971
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
12 changes: 6 additions & 6 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -623,11 +623,11 @@ lazy val consts = new {

lazy val dependencies = new {

val catsVersion = "2.9.0"
val catsVersion = "2.10.0"
val catsEffectVersion = "3.5.1"
val catsMtlVersion = "1.3.1"
val catsCollectionsVersion = "0.9.6"
val fs2Version = "3.7.0"
val catsCollectionsVersion = "0.9.7"
val fs2Version = "3.8.0"
val scalacheckEffectVersion = "2.0.0-M2"
val jcstressVersion = "0.16"
val jmhVersion = "1.33"
Expand All @@ -652,7 +652,7 @@ lazy val dependencies = new {
val paguro = Def.setting("org.organicdesign" % "Paguro" % "3.10.3") // https://github.com/GlenKPeterson/Paguro
val jol = Def.setting("org.openjdk.jol" % "jol-core" % "0.17")
val jcTools = Def.setting("org.jctools" % "jctools-core" % "4.0.1") // https://github.com/JCTools/JCTools
val lincheck = Def.setting("org.jetbrains.kotlinx" % "lincheck-jvm" % "2.18.1") // https://github.com/Kotlin/kotlinx-lincheck
val lincheck = Def.setting("org.jetbrains.kotlinx" % "lincheck-jvm" % "2.23") // https://github.com/JetBrains/lincheck
val asm = Def.setting("org.ow2.asm" % "asm-commons" % "9.5") // https://asm.ow2.io/

// JS:
Expand All @@ -665,8 +665,8 @@ lazy val dependencies = new {

val scalaStm = Def.setting("org.scala-stm" %%% "scala-stm" % "0.11.1")
val catsStm = Def.setting("io.github.timwspence" %%% "cats-stm" % "0.13.4")
val zioCats = Def.setting("dev.zio" %%% "zio-interop-cats" % "23.0.0.6")
val zioStm = Def.setting("dev.zio" %%% "zio" % "2.0.15")
val zioCats = Def.setting("dev.zio" %%% "zio-interop-cats" % "23.0.0.8")
val zioStm = Def.setting("dev.zio" %%% "zio" % "2.0.16")

val test = Def.setting[Seq[ModuleID]] {
Seq(
Expand Down
4 changes: 2 additions & 2 deletions core/jvm/src/test/scala/dev/tauri/choam/baseSpecZIO.scala
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ abstract class BaseSpecZIO
zio.Runtime.default

final override def F: Async[zio.Task] =
zio.interop.catz.asyncRuntimeInstance(this.runtime)
zio.interop.catz.asyncInstance

protected final override def absolutelyUnsafeRunSync[A](fa: zio.Task[A]): A = {
zio.Unsafe.unsafe { implicit u =>
Expand Down Expand Up @@ -91,7 +91,7 @@ abstract class BaseSpecTickedZIO
import zio._

final override def F: Async[zio.Task] =
zio.interop.catz.asyncRuntimeInstance(this.zioRuntime)
zio.interop.catz.asyncInstance

protected final override def absolutelyUnsafeRunSync[A](fa: zio.Task[A]): A = {
zio.Unsafe.unsafe { implicit u =>
Expand Down

0 comments on commit 994f971

Please sign in to comment.