diff --git a/docs/faq.md b/docs/faq.md index d19089559c..2720afe6ab 100644 --- a/docs/faq.md +++ b/docs/faq.md @@ -9,7 +9,7 @@ title: FAQ ```scala-cli //> using scala "2.13.8" -//> using lib "org.typelevel::cats-effect::3.4.11" +//> using lib "org.typelevel::cats-effect::3.5.2" import cats.effect._ diff --git a/docs/getting-started.md b/docs/getting-started.md index 8eae7764a7..eff54fead0 100644 --- a/docs/getting-started.md +++ b/docs/getting-started.md @@ -62,7 +62,7 @@ We will learn more about constructs like `start` and `*>` in later pages, but fo Of course, the easiest way to play with Cats Effect is to try it out in a Scala REPL. We recommend using [Ammonite](https://ammonite.io/#Ammonite-REPL) for this kind of thing. To get started, run the following lines (if not using Ammonite, skip the first line and make sure that Cats Effect and its dependencies are correctly configured on the classpath): ```scala -import $ivy.`org.typelevel::cats-effect:3.4.11` +import $ivy.`org.typelevel::cats-effect:3.5.2` import cats.effect.unsafe.implicits._ import cats.effect.IO diff --git a/docs/std/mapref.md b/docs/std/mapref.md index 3b4266d082..54535d2411 100644 --- a/docs/std/mapref.md +++ b/docs/std/mapref.md @@ -32,7 +32,7 @@ as long as their keys belong to different shards. This is probably one of the most common uses of this datatype. ```scala mdoc:reset:silent -//> using lib "org.typelevel::cats-effect:3.5.1" +//> using lib "org.typelevel::cats-effect::3.5.2" import cats.effect.IO import cats.effect.std.MapRef diff --git a/docs/std/ref.md b/docs/std/ref.md index 259d208558..b4c7cc5892 100644 --- a/docs/std/ref.md +++ b/docs/std/ref.md @@ -33,7 +33,7 @@ This is probably one of the most common uses of this concurrency primitive. In this example, the workers will concurrently run and update the value of the `Ref`. ```scala mdoc:reset:silent -//> using lib "org.typelevel::cats-effect:3.4.11" +//> using lib "org.typelevel::cats-effect::3.5.2" import cats.effect.{IO, IOApp, Sync} import cats.effect.kernel.Ref