From 94d5d03e4eb4b356a98f2c8f101da9340d54a25a Mon Sep 17 00:00:00 2001 From: Yann Moisan Date: Thu, 18 Jul 2024 00:37:09 +0200 Subject: [PATCH 1/6] bump cats-effect to 3.4.11 --- project/Dependencies.scala | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/project/Dependencies.scala b/project/Dependencies.scala index 95d5087..83ab91e 100644 --- a/project/Dependencies.scala +++ b/project/Dependencies.scala @@ -2,7 +2,7 @@ import sbt._ object Dependencies { lazy val scalaTest = "org.scalatest" %% "scalatest" % "3.2.15" - lazy val catsEffectKernel = "org.typelevel" %% "cats-effect-kernel" % "3.4.6" - lazy val catsEffect = "org.typelevel" %% "cats-effect" % "3.4.6" + lazy val catsEffectKernel = "org.typelevel" %% "cats-effect-kernel" % "3.4.11" + lazy val catsEffect = "org.typelevel" %% "cats-effect" % "3.4.11" lazy val scalaLogging = "com.typesafe.scala-logging" %% "scala-logging" % "3.9.5" } From ef65dea2f5ef98565d481a912824dfa9c300d680 Mon Sep 17 00:00:00 2001 From: Yann Moisan Date: Thu, 18 Jul 2024 00:38:51 +0200 Subject: [PATCH 2/6] bump scalatest to 3.2.19 --- project/Dependencies.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/Dependencies.scala b/project/Dependencies.scala index 83ab91e..1851032 100644 --- a/project/Dependencies.scala +++ b/project/Dependencies.scala @@ -1,7 +1,7 @@ import sbt._ object Dependencies { - lazy val scalaTest = "org.scalatest" %% "scalatest" % "3.2.15" + lazy val scalaTest = "org.scalatest" %% "scalatest" % "3.2.19" lazy val catsEffectKernel = "org.typelevel" %% "cats-effect-kernel" % "3.4.11" lazy val catsEffect = "org.typelevel" %% "cats-effect" % "3.4.11" lazy val scalaLogging = "com.typesafe.scala-logging" %% "scala-logging" % "3.9.5" From 5ea3964fe3546f6271ebda79479f89c4851e047c Mon Sep 17 00:00:00 2001 From: Yann Moisan Date: Thu, 18 Jul 2024 00:40:16 +0200 Subject: [PATCH 3/6] bump sbt-tpolecat to 0.4.4 --- project/plugins.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/plugins.sbt b/project/plugins.sbt index 1217dcf..0960e23 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1,4 +1,4 @@ -addSbtPlugin("io.github.davidgregory084" % "sbt-tpolecat" % "0.4.2") +addSbtPlugin("io.github.davidgregory084" % "sbt-tpolecat" % "0.4.4") addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.5.0") From 02c61838b42ad8141732214fb93ee9dc4a5bc49f Mon Sep 17 00:00:00 2001 From: Yann Moisan Date: Thu, 18 Jul 2024 00:40:48 +0200 Subject: [PATCH 4/6] bump sbt-scalafmt to 2.5.2 --- project/plugins.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/plugins.sbt b/project/plugins.sbt index 0960e23..7da0c96 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1,6 +1,6 @@ addSbtPlugin("io.github.davidgregory084" % "sbt-tpolecat" % "0.4.4") -addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.5.0") +addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.5.2") addSbtPlugin("org.scoverage" % "sbt-scoverage" % "2.1.0") From 3eb193fb3c9a2cebdd024dcb6af50a4f3cae5200 Mon Sep 17 00:00:00 2001 From: Yann Moisan Date: Thu, 18 Jul 2024 00:43:57 +0200 Subject: [PATCH 5/6] bump scala from 2.13.10 to 2.13.14 --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index e2ebda7..6aff85e 100644 --- a/build.sbt +++ b/build.sbt @@ -2,7 +2,7 @@ import Dependencies._ import sbt.Keys._ organization := "com.yannmoisan" -crossScalaVersions := Seq("2.12.19", "2.13.10") +crossScalaVersions := Seq("2.12.19", "2.13.14") scalafmtOnCompile := true From de4fd13175be6e6c50e9b2e043ebd11133b82836 Mon Sep 17 00:00:00 2001 From: Yann Moisan Date: Thu, 18 Jul 2024 00:53:52 +0200 Subject: [PATCH 6/6] bump cats-effect to 3.5.4 --- project/Dependencies.scala | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/project/Dependencies.scala b/project/Dependencies.scala index 1851032..c345776 100644 --- a/project/Dependencies.scala +++ b/project/Dependencies.scala @@ -2,7 +2,7 @@ import sbt._ object Dependencies { lazy val scalaTest = "org.scalatest" %% "scalatest" % "3.2.19" - lazy val catsEffectKernel = "org.typelevel" %% "cats-effect-kernel" % "3.4.11" - lazy val catsEffect = "org.typelevel" %% "cats-effect" % "3.4.11" + lazy val catsEffectKernel = "org.typelevel" %% "cats-effect-kernel" % "3.5.4" + lazy val catsEffect = "org.typelevel" %% "cats-effect" % "3.5.4" lazy val scalaLogging = "com.typesafe.scala-logging" %% "scala-logging" % "3.9.5" }