From 5a276f7417b3039f46da7c85ca41e00c4f993be0 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 14 Jul 2024 10:04:35 +0200 Subject: [PATCH] Update README.md (#713) Co-authored-by: github-actions[bot] --- README.md | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index 2ff5a2ad4..adf1dc5b0 100644 --- a/README.md +++ b/README.md @@ -39,17 +39,17 @@ _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" % "1.2.2" -libraryDependencies += "dev.zio" %% "zio-schema-avro" % "1.2.2" -libraryDependencies += "dev.zio" %% "zio-schema-bson" % "1.2.2" -libraryDependencies += "dev.zio" %% "zio-schema-json" % "1.2.2" -libraryDependencies += "dev.zio" %% "zio-schema-msg-pack" % "1.2.2" -libraryDependencies += "dev.zio" %% "zio-schema-protobuf" % "1.2.2" -libraryDependencies += "dev.zio" %% "zio-schema-thrift" % "1.2.2" -libraryDependencies += "dev.zio" %% "zio-schema-zio-test" % "1.2.2" +libraryDependencies += "dev.zio" %% "zio-schema" % "1.3.0" +libraryDependencies += "dev.zio" %% "zio-schema-avro" % "1.3.0" +libraryDependencies += "dev.zio" %% "zio-schema-bson" % "1.3.0" +libraryDependencies += "dev.zio" %% "zio-schema-json" % "1.3.0" +libraryDependencies += "dev.zio" %% "zio-schema-msg-pack" % "1.3.0" +libraryDependencies += "dev.zio" %% "zio-schema-protobuf" % "1.3.0" +libraryDependencies += "dev.zio" %% "zio-schema-thrift" % "1.3.0" +libraryDependencies += "dev.zio" %% "zio-schema-zio-test" % "1.3.0" // Required for the automatic generic derivation of schemas -libraryDependencies += "dev.zio" %% "zio-schema-derivation" % "1.2.2" +libraryDependencies += "dev.zio" %% "zio-schema-derivation" % "1.3.0" libraryDependencies += "org.scala-lang" % "scala-reflect" % scalaVersion.value % "provided" ```