Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change version to 1.4.0 in the documentation #559

Merged
merged 1 commit into from
May 20, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ without implicit ambiguity, unlike in pre-1.0.0 cats or Scalaz 7.
## Usage

```scala
libraryDependencies += "org.typelevel" %% "cats-mtl" % "1.3.0"
libraryDependencies += "org.typelevel" %% "cats-mtl" % "1.4.0"
```

If your project uses ScalaJS, replace the double-`%` with a triple. Note that **cats-mtl** has an upstream dependency on **cats-core** version 2.x.
Expand All @@ -34,7 +34,7 @@ If you're not sure where to start or what Cats MTL even is, please refer to the
The **cats-mtl-laws** artifact provides [Discipline-style](https://github.com/typelevel/discipline) laws for all of the type classes defined in cats-mtl. It is relatively easy to use these laws to test your own implementations of these typeclasses. Take a look [here](https://github.com/typelevel/cats-mtl/tree/main/laws/src/main/scala/cats/mtl/laws) for more.

```scala
libraryDependencies += "org.typelevel" %% "cats-mtl-laws" % "1.3.0" % Test
libraryDependencies += "org.typelevel" %% "cats-mtl-laws" % "1.4.0" % Test
```

These laws are compatible with both Specs2 and ScalaTest.
Expand Down