diff --git a/README.md b/README.md index 2cb88d20..9f194825 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,7 @@ To use ZIO DynamoDB, we need to add the following line to our `build.sbt` file: ```scala libraryDependencies ++= Seq( - "dev.zio" %% "zio-dynamodb" % "1.0.0-RC4" + "dev.zio" %% "zio-dynamodb" "1.0.0-RC6" ) ``` @@ -32,7 +32,7 @@ To use the new Cats Effect 3 interop module, we need to also add the following l ```scala libraryDependencies ++= Seq( - "dev.zio" %% "zio-dynamodb-ce" % "1.0.0-RC4" + "dev.zio" %% "zio-dynamodb-ce" "1.0.0-RC6" ) ``` @@ -43,7 +43,7 @@ AWS tools like the CLI and Console read/write a special JSON representation of d ```scala libraryDependencies ++= Seq( - "dev.zio" %% "zio-dynamodb-json" % "1.0.0-RC4" + "dev.zio" %% "zio-dynamodb-json" "1.0.0-RC6" ) ```