Skip to content

Commit

Permalink
Merge pull request #363 from ChidiRnweke/patch-1
Browse files Browse the repository at this point in the history
Fix incorrect library dependency in documentation
  • Loading branch information
danicheg authored Apr 13, 2024
2 parents 6cc3cd9 + e27ef0c commit a251b46
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,26 @@ Integration library for [MUnit](https://scalameta.org/munit/) and [cats-effect](

## Binaries

### For versions `2.0.0-M1` and above:

```scala
libraryDependencies += "org.typelevel" %%% "munit-cats-effect" % "@VERSION@" % "test"
```

> Please note that only Cats Effect 3 is supported for versions `2.0.0-M1` and above.
### For versions `1.0.7` and below:

Cats Effect 2 integration is provided via:

```scala
libraryDependencies += "org.typelevel" %%% "munit-cats-effect-2" % "@VERSION@" % "test"
libraryDependencies += "org.typelevel" %%% "munit-cats-effect-2" % version % "test"
```

Cats Effect 3 integration is provided via:

```scala
libraryDependencies += "org.typelevel" %%% "munit-cats-effect-3" % "@VERSION@" % "test"
libraryDependencies += "org.typelevel" %%% "munit-cats-effect-3" % version % "test"
```

Builds are available for Scala 2.12, 2.13, and 3 for both the JVM and Scala.js.
Expand Down

0 comments on commit a251b46

Please sign in to comment.