Skip to content
This repository has been archived by the owner on Jan 13, 2025. It is now read-only.

Commit

Permalink
ZIO 1.0.1 (#107)
Browse files Browse the repository at this point in the history
  • Loading branch information
sideeffffect authored Aug 25, 2020
1 parent dad3eb4 commit a1a4d53
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
6 changes: 3 additions & 3 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,9 @@ lazy val guava = project
.settings(testFrameworks += new TestFramework("zio.test.sbt.ZTestFramework"))
.settings(
libraryDependencies ++= Seq(
"dev.zio" %% "zio" % "1.0.0-RC18-2",
"dev.zio" %% "zio" % "1.0.1",
"com.google.guava" % "guava" % "29.0-jre",
"dev.zio" %% "zio-test" % "1.0.0-RC18-2" % Test,
"dev.zio" %% "zio-test-sbt" % "1.0.0-RC18-2" % Test
"dev.zio" %% "zio-test" % "1.0.1" % Test,
"dev.zio" %% "zio-test-sbt" % "1.0.1" % Test
)
)
2 changes: 0 additions & 2 deletions src/main/scala/zio/interop/guava.scala
Original file line number Diff line number Diff line change
Expand Up @@ -100,8 +100,6 @@ object guava {
UIO.succeedNow(None)
}

final def children: UIO[Iterable[Fiber[Any, Any]]] = UIO(Nil)

final def getRef[A](ref: FiberRef[A]): UIO[A] = UIO(ref.initial)

final def interruptAs(id: Fiber.Id): UIO[Exit[Throwable, A]] = join.fold(Exit.fail, Exit.succeed)
Expand Down

0 comments on commit a1a4d53

Please sign in to comment.