Skip to content
Open
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
18 changes: 9 additions & 9 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -79,8 +79,8 @@ lazy val core = Project("clipp-core", file("clipp-core")).settings(commonSetting
description := "Clipp core",

libraryDependencies ++= Seq(
"dev.zio" %% "zio-test" % "1.0.17" % Test,
"dev.zio" %% "zio-test-sbt" % "1.0.17" % Test
"dev.zio" %% "zio-test" % "1.0.18" % Test,
"dev.zio" %% "zio-test-sbt" % "1.0.18" % Test
),

testFrameworks += new TestFramework("zio.test.sbt.ZTestFramework")
Expand All @@ -90,9 +90,9 @@ lazy val zio = Project("clipp-zio", file("clipp-zio")).settings(commonSettings).
description := "Clipp ZIO interface",

libraryDependencies ++= Seq(
"dev.zio" %% "zio" % "1.0.17",
"dev.zio" %% "zio-test" % "1.0.17" % Test,
"dev.zio" %% "zio-test-sbt" % "1.0.17" % Test
"dev.zio" %% "zio" % "1.0.18",
"dev.zio" %% "zio-test" % "1.0.18" % Test,
"dev.zio" %% "zio-test-sbt" % "1.0.18" % Test
),

testFrameworks += new TestFramework("zio.test.sbt.ZTestFramework")
Expand All @@ -117,8 +117,8 @@ lazy val catsEffect = Project("clipp-cats-effect", file("clipp-cats-effect")).se

libraryDependencies ++= Seq(
"org.typelevel" %% "cats-effect" % "2.5.5",
"dev.zio" %% "zio-test" % "1.0.17" % Test,
"dev.zio" %% "zio-test-sbt" % "1.0.17" % Test,
"dev.zio" %% "zio-test" % "1.0.18" % Test,
"dev.zio" %% "zio-test-sbt" % "1.0.18" % Test,
),

testFrameworks += new TestFramework("zio.test.sbt.ZTestFramework")
Expand All @@ -129,8 +129,8 @@ lazy val catsEffect3 = Project("clipp-cats-effect3", file("clipp-cats-effect3"))

libraryDependencies ++= Seq(
"org.typelevel" %% "cats-effect" % "3.3.14",
"dev.zio" %% "zio-test" % "1.0.17" % Test,
"dev.zio" %% "zio-test-sbt" % "1.0.17" % Test,
"dev.zio" %% "zio-test" % "1.0.18" % Test,
"dev.zio" %% "zio-test-sbt" % "1.0.18" % Test,
),

testFrameworks += new TestFramework("zio.test.sbt.ZTestFramework")
Expand Down