Skip to content

Commit

Permalink
Update zio-quill to v4.7.3 (#362)
Browse files Browse the repository at this point in the history
  • Loading branch information
guizmaii authored Sep 29, 2023
1 parent f9fab26 commit 4288285
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 9 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,17 +51,17 @@ Add the following to your SBT file:
```scala
libraryDependencies ++= Seq(
// Syncronous JDBC Modules
"io.getquill" %% "quill-jdbc" % "4.5.0",
"io.getquill" %% "quill-jdbc" % "4.7.3",
// Or ZIO Modules
"io.getquill" %% "quill-jdbc-zio" % "4.5.0",
"io.getquill" %% "quill-jdbc-zio" % "4.7.3",
// Or Postgres Async
"io.getquill" %% "quill-jasync-postgres" % "4.5.0",
"io.getquill" %% "quill-jasync-postgres" % "4.7.3",
// Or Cassandra
"io.getquill" %% "quill-cassandra" % "4.5.0",
"io.getquill" %% "quill-cassandra" % "4.7.3",
// Or Cassandra + ZIO
"io.getquill" %% "quill-cassandra-zio" % "4.5.0",
"io.getquill" %% "quill-cassandra-zio" % "4.7.3",
// Add for Caliban Integration
"io.getquill" %% "quill-caliban" % "4.5.0"
"io.getquill" %% "quill-caliban" % "4.7.3"
)
```

Expand Down
8 changes: 5 additions & 3 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,8 @@ val filteredModules = {
selectedModules
}

val zioQuillVersion = "4.7.3"

lazy val `quill` =
(project in file("."))
.settings(commonSettings: _*)
Expand Down Expand Up @@ -122,14 +124,14 @@ lazy val `quill-sql` =
"io.suzaku" %% "boopickle" % "1.4.0",
"com.lihaoyi" %% "pprint" % "0.6.6",
"ch.qos.logback" % "logback-classic" % "1.3.11" % Test,
"io.getquill" %% "quill-engine" % "4.7.3",
"io.getquill" %% "quill-engine" % zioQuillVersion,
"dev.zio" %% "zio" % "2.0.18",
("io.getquill" %% "quill-util" % "4.7.0")
("io.getquill" %% "quill-util" % zioQuillVersion)
.excludeAll({
if (isCommunityBuild)
Seq(ExclusionRule(organization = "org.scalameta", name = "scalafmt-core_2.13"))
else
Seq()
Seq.empty
}: _*),
"com.typesafe.scala-logging" %% "scala-logging" % "3.9.5",
"org.scalatest" %% "scalatest" % scalatestVersion % Test,
Expand Down

0 comments on commit 4288285

Please sign in to comment.