Skip to content

Commit

Permalink
Update cats-effect to 2.4.0 (#361)
Browse files Browse the repository at this point in the history
* Applied Scalafix rule(s) github:typelevel/cats-effect/v2_4_0?sha=series/2.x

See https://github.com/typelevel/cats-effect/blob/v2.4.0/scalafix/README.md for details

* Update cats-effect to 2.4.0
  • Loading branch information
scala-steward committed Mar 22, 2021
1 parent 963c737 commit b561331
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build.sbt
Expand Up @@ -48,7 +48,7 @@ libraryDependencies ++= Seq(
"com.github.tomakehurst" % "wiremock" % "2.27.2" % "it,test"
)
libraryDependencies += "org.jsoup" % "jsoup" % "1.13.1"
libraryDependencies += "org.typelevel" %% "cats-effect" % "2.3.3"
libraryDependencies += "org.typelevel" %% "cats-effect" % "2.4.0"
libraryDependencies += "com.github.pathikrit" %% "better-files" % "3.9.1"
libraryDependencies += "io.get-coursier" %% "coursier-core" % "2.0.15"
libraryDependencies += "org.antlr" % "antlr4-runtime" % "4.9.2"
Expand Down
4 changes: 2 additions & 2 deletions src/test/scala/ru/d10xa/jadd/testkit/TestBase.scala
Expand Up @@ -31,7 +31,7 @@ abstract class TestBase extends AnyFunSuiteLike with Matchers {
def tempFileOpsResource[F[_]: Sync]: Resource[F, (Path, FileOps[F])] =
for {
path <- tempPathResource[F]
ops <- Resource.liftF(LiveFileOps.make[F](path))
ops <- Resource.eval(LiveFileOps.make[F](path))
} yield (path, ops)
def createFileOpsWithFilesF[F[_]: Sync](
files: List[(String, String)]
Expand All @@ -46,7 +46,7 @@ abstract class TestBase extends AnyFunSuiteLike with Matchers {
.write(content)
)
}
Resource.liftF(createFiles.map(_ => t))
Resource.eval(createFiles.map(_ => t))
}

def createLayoutSelectorWithFilesF[F[_]: Sync](
Expand Down

0 comments on commit b561331

Please sign in to comment.