Skip to content

Commit

Permalink
Upgrade dependency versions
Browse files Browse the repository at this point in the history
  • Loading branch information
gaelrenoux committed Jan 7, 2024
1 parent 5dbfdfa commit 1910143
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .idea/sbt.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 |



Expand Down
16 changes: 7 additions & 9 deletions project/BuildHelper.scala
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand All @@ -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
)
Expand All @@ -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,
)

Expand Down

0 comments on commit 1910143

Please sign in to comment.