From 19101437647c9d87b4ed95f954191ee9dcbad684 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ga=C3=ABl=20Renoux?= Date: Sun, 7 Jan 2024 15:59:15 +0100 Subject: [PATCH] Upgrade dependency versions --- .idea/sbt.xml | 2 +- README.md | 2 +- project/BuildHelper.scala | 16 +++++++--------- 3 files changed, 9 insertions(+), 11 deletions(-) diff --git a/.idea/sbt.xml b/.idea/sbt.xml index f03326d..a71613b 100644 --- a/.idea/sbt.xml +++ b/.idea/sbt.xml @@ -16,7 +16,7 @@ - diff --git a/README.md b/README.md index 4f22c85..fee6f99 100644 --- a/README.md +++ b/README.md @@ -197,7 +197,7 @@ Check the backward compatibility information on those libraries to check which v | 4.1.0 | 2.12 2.13 3 | 2.0.2 | 1.0.0-RC2 | 2.7.0 | | 4.2.0 | 2.12 2.13 3 | 2.0.13 | 1.0.0-RC2 | 2.7.0 | | 5.0.1 | 2.12 2.13 3 | 2.0.15 | 1.0.0-RC4 | 2.7.0 | -| master | 2.12 2.13 3 | 2.0.15 | 1.0.0-RC4 | 2.7.0 | +| master | 2.12 2.13 3 | 2.0.21 | 1.0.0-RC5 | 2.7.0 | diff --git a/project/BuildHelper.scala b/project/BuildHelper.scala index 368f088..5c2e71c 100644 --- a/project/BuildHelper.scala +++ b/project/BuildHelper.scala @@ -5,15 +5,15 @@ import xerial.sbt.Sonatype.autoImport._ object BuildHelper { object V { - val zio = "2.0.15" - val zioCats = "23.0.0.8" - val cats = "2.9.0" + val zio = "2.0.21" + val zioCats = "23.1.0.0" + val cats = "2.10.0" val doobie = "1.0.0-RC5" val anorm = "2.7.0" - val h2 = "2.2.220" + val h2 = "2.2.224" val scala212 = "2.12.18" - val scala213 = "2.13.11" - val scala3 = "3.3.0" + val scala213 = "2.13.12" + val scala3 = "3.3.1" } val coreDeps: Seq[ModuleID] = Seq( @@ -26,9 +26,6 @@ object BuildHelper { "dev.zio" %% "zio-test-sbt" % V.zio % Test, "dev.zio" %% "zio-test-magnolia" % V.zio % Test, - /* Cats for tests. Needed since zio-interop-cats doesn't pull it. */ - "org.typelevel" %% "cats-core" % V.cats % Test, - /* H2 for tests */ "com.h2database" % "h2" % V.h2 % Test ) @@ -37,6 +34,7 @@ object BuildHelper { ) val doobieDeps: Seq[ModuleID] = Seq( "dev.zio" %% "zio-interop-cats" % V.zioCats, + "org.typelevel" %% "cats-core" % V.cats, "org.tpolecat" %% "doobie-core" % V.doobie, )