From d71c1a755a9472f66b250fd88746e8c3a9e20a3e Mon Sep 17 00:00:00 2001 From: Gabriel Ciuloaica Date: Tue, 22 Aug 2023 09:51:08 +0300 Subject: [PATCH] fix: fixed README --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 83ae7bd26..2e33a70fe 100644 --- a/README.md +++ b/README.md @@ -30,13 +30,13 @@ _ZIO Schema_ is used by a growing number of ZIO libraries, including _ZIO Flow_, In order to use this library, we need to add the following lines in our `build.sbt` file: ```scala -libraryDependencies += "dev.zio" %% "zio-schema" % "0.2.1" -libraryDependencies += "dev.zio" %% "zio-schema-bson" % "0.2.1" -libraryDependencies += "dev.zio" %% "zio-schema-json" % "0.2.1" -libraryDependencies += "dev.zio" %% "zio-schema-protobuf" % "0.2.1" +libraryDependencies += "dev.zio" %% "zio-schema" % "0.4.13" +libraryDependencies += "dev.zio" %% "zio-schema-bson" % "0.4.13" +libraryDependencies += "dev.zio" %% "zio-schema-json" % "0.4.13" +libraryDependencies += "dev.zio" %% "zio-schema-protobuf" % "0.4.13" // Required for automatic generic derivation of schemas -libraryDependencies += "dev.zio" %% "zio-schema-derivation" % "0.2.1", +libraryDependencies += "dev.zio" %% "zio-schema-derivation" % "0.4.13", libraryDependencies += "org.scala-lang" % "scala-reflect" % scalaVersion.value % "provided" ```