From 0700524f213af0aba83d7f735d55c48e866a8eca Mon Sep 17 00:00:00 2001 From: Pierre Ricadat Date: Thu, 31 Oct 2019 10:16:11 +0900 Subject: [PATCH] Upgrade interop-cats --- build.sbt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build.sbt b/build.sbt index 8d777fe12..c18e46a86 100644 --- a/build.sbt +++ b/build.sbt @@ -82,7 +82,7 @@ lazy val catsInterop = crossProject(JSPlatform, JVMPlatform) .settings(commonSettings) .settings( libraryDependencies ++= Seq( - "dev.zio" %%% "zio-interop-cats" % "2.0.0.0-RC6", + "dev.zio" %%% "zio-interop-cats" % "2.0.0.0-RC7", "org.typelevel" %%% "cats-effect" % "2.0.0" ) ) @@ -96,7 +96,7 @@ lazy val http4s = project .settings(commonSettings) .settings( libraryDependencies ++= Seq( - "dev.zio" %% "zio-interop-cats" % "2.0.0.0-RC6", + "dev.zio" %% "zio-interop-cats" % "2.0.0.0-RC7", "org.typelevel" %% "cats-effect" % "2.0.0", "org.http4s" %% "http4s-dsl" % "0.21.0-M5", "org.http4s" %% "http4s-circe" % "0.21.0-M5", @@ -109,7 +109,7 @@ lazy val http4s = project ) ) ) - .dependsOn(coreJVM, catsInteropJVM) + .dependsOn(coreJVM) lazy val examples = project .in(file("examples"))