From b633f0c211e561edfc6895d13a1d424a820c99a5 Mon Sep 17 00:00:00 2001 From: Chidi Nweke <88949660+ChidiRnweke@users.noreply.github.com> Date: Mon, 8 Apr 2024 17:52:25 +0200 Subject: [PATCH] Change version to 1.4.0 The release of the library is 1.4.0 instead of 1.3.0 as per https://mvnrepository.com/artifact/org.typelevel/cats-mtl --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index d2fba2b0..d6b42693 100644 --- a/README.md +++ b/README.md @@ -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. @@ -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.