Skip to content

Commit

Permalink
Update more versions
Browse files Browse the repository at this point in the history
  • Loading branch information
armanbilge committed Sep 28, 2023
1 parent 077e52a commit 7dfe45d
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion docs/faq.md
Original file line number Diff line number Diff line change
Expand Up @@ -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._
Expand Down
2 changes: 1 addition & 1 deletion docs/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion docs/std/mapref.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion docs/std/ref.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 7dfe45d

Please sign in to comment.