diff --git a/build.sbt b/build.sbt index e35e4e5..70ffec7 100644 --- a/build.sbt +++ b/build.sbt @@ -19,7 +19,7 @@ lazy val root = (project in file(".")).enablePlugins(ScriptedPlugin).settings( scalafixDependencies += "com.github.liancheng" %% "organize-imports" % "0.6.0", libraryDependencies ++= Seq( "org.typelevel" %% "cats-effect" % "3.5.4", - "co.fs2" %% "fs2-core" % "3.10.0", + "co.fs2" %% "fs2-core" % "3.10.1", "com.monovore" %% "decline-effect" % "2.4.1", "is.cir" %% "ciris" % "3.5.0", ("org.typelevel" % "kind-projector" % "0.13.3").cross(CrossVersion.full), diff --git a/src/main/g8/project/Dependencies.scala b/src/main/g8/project/Dependencies.scala index a4515b6..33196d6 100644 --- a/src/main/g8/project/Dependencies.scala +++ b/src/main/g8/project/Dependencies.scala @@ -7,7 +7,7 @@ object Dependencies { "org.typelevel" %% "cats-effect" % "3.5.4", "com.monovore" %% "decline-effect" % "2.4.1", "is.cir" %% "ciris" % "3.5.0", - $if(add_fs2.truthy) $ "co.fs2" %% "fs2-core" % "3.10.0" $endif$ + $if(add_fs2.truthy) $ "co.fs2" %% "fs2-core" % "3.10.1" $endif$ ) val testDependencies: Seq[ModuleID] = Seq("org.typelevel" %% "munit-cats-effect-3" % "1.0.7").map(_ % Test)