Skip to content

Commit 7dfe45d

Browse files
committed
Update more versions
1 parent 077e52a commit 7dfe45d

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

docs/faq.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ title: FAQ
99

1010
```scala-cli
1111
//> using scala "2.13.8"
12-
//> using lib "org.typelevel::cats-effect::3.4.11"
12+
//> using lib "org.typelevel::cats-effect::3.5.2"
1313
1414
import cats.effect._
1515

docs/getting-started.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ We will learn more about constructs like `start` and `*>` in later pages, but fo
6262
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):
6363

6464
```scala
65-
import $ivy.`org.typelevel::cats-effect:3.4.11`
65+
import $ivy.`org.typelevel::cats-effect:3.5.2`
6666

6767
import cats.effect.unsafe.implicits._
6868
import cats.effect.IO

docs/std/mapref.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ as long as their keys belong to different shards.
3232
This is probably one of the most common uses of this datatype.
3333

3434
```scala mdoc:reset:silent
35-
//> using lib "org.typelevel::cats-effect:3.5.1"
35+
//> using lib "org.typelevel::cats-effect::3.5.2"
3636

3737
import cats.effect.IO
3838
import cats.effect.std.MapRef

docs/std/ref.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ This is probably one of the most common uses of this concurrency primitive.
3333
In this example, the workers will concurrently run and update the value of the `Ref`.
3434

3535
```scala mdoc:reset:silent
36-
//> using lib "org.typelevel::cats-effect:3.4.11"
36+
//> using lib "org.typelevel::cats-effect::3.5.2"
3737

3838
import cats.effect.{IO, IOApp, Sync}
3939
import cats.effect.kernel.Ref

0 commit comments

Comments
 (0)