From 539d59f04f453302602fe0615b2324838e2a5a83 Mon Sep 17 00:00:00 2001 From: Dejan Mijic Date: Mon, 20 Feb 2023 16:06:12 +0100 Subject: [PATCH] Update README --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index d2674df2..ffe8f51e 100644 --- a/README.md +++ b/README.md @@ -25,13 +25,13 @@ ZIO Telemetry is a purely functional client which helps up propagate context bet In order to use this library, we need to add the following line in our `build.sbt` file if we want to use [OpenTelemetry](https://opentelemetry.io/) client: ```scala -libraryDependencies += "dev.zio" %% "zio-telemetry" % "3.0.0-RC1" +libraryDependencies += "dev.zio" %% "zio-telemetry" % "3.0.0-RC2" ``` And for using [OpenTracing](https://opentracing.io/) client we should add the following line in our `build.sbt` file: ```scala -libraryDependencies += "dev.zio" %% "zio-opentracing" % "3.0.0-RC1" +libraryDependencies += "dev.zio" %% "zio-opentracing" % "3.0.0-RC2" ``` ## Example