Skip to content

Commit

Permalink
Update ZIO to RC15. (zio#89)
Browse files Browse the repository at this point in the history
* Update ZIO to RC15.

* revert sbt-pgp  version
  • Loading branch information
tanaka takaya authored and ghostdogpr committed Oct 16, 2019
1 parent 43c9d52 commit 3fb52ce
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,4 @@ project/secrets.tar.xz
project/zecret
target
test-output/
.idea/
8 changes: 4 additions & 4 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -49,13 +49,13 @@ lazy val interopCats = crossProject(JSPlatform, JVMPlatform)
.settings(buildInfoSettings)
.settings(
libraryDependencies ++= Seq(
"dev.zio" %%% "zio" % "1.0.0-RC14",
"dev.zio" %%% "zio-streams" % "1.0.0-RC14" % Optional,
"dev.zio" %%% "zio-test" % "1.0.0-RC14",
"dev.zio" %%% "zio" % "1.0.0-RC15",
"dev.zio" %%% "zio-streams" % "1.0.0-RC15" % Optional,
"dev.zio" %%% "zio-test" % "1.0.0-RC15",
"org.typelevel" %%% "cats-effect" % "2.0.0" % Optional,
"org.typelevel" %%% "cats-mtl-core" % "0.7.0" % Optional,
"co.fs2" %%% "fs2-core" % "2.0.1" % Test,
"dev.zio" %%% "zio-test-sbt" % "1.0.0-RC14" % Test,
"dev.zio" %%% "zio-test-sbt" % "1.0.0-RC15" % Test,
"org.specs2" %%% "specs2-core" % "4.7.1" % Test,
"org.specs2" %%% "specs2-scalacheck" % "4.7.1" % Test,
"org.specs2" %%% "specs2-matcher-extra" % "4.7.1" % Test,
Expand Down
2 changes: 1 addition & 1 deletion interop-cats/shared/src/main/scala/zio/interop/cats.scala
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ abstract class CatsPlatform extends CatsInstances with CatsZManagedInstances wit
val console: interop.console.cats.type = interop.console.cats

trait CatsApp extends App {
implicit val runtime: Runtime[Environment] = this
implicit val runtime: Runtime[ZEnv] = this
}

object implicits {
Expand Down

0 comments on commit 3fb52ce

Please sign in to comment.