From 48cba1e54dc27ee48c4ef274936f3913c8b79e73 Mon Sep 17 00:00:00 2001 From: Massimo Siani Date: Sun, 10 Sep 2023 15:03:31 +0200 Subject: [PATCH] fix docs --- build.sbt | 3 +-- docs/docs/docs/natchez-doobie.md | 3 ++- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/build.sbt b/build.sbt index 6b9133f..9bea91a 100644 --- a/build.sbt +++ b/build.sbt @@ -216,7 +216,7 @@ lazy val natchezDoobieLegacy = projectMatrix libraryDependencies ++= Seq( "org.tpolecat" %% "natchez-core" % natchezVersion, "org.tpolecat" %% "doobie-core" % doobieLegacyVersion, - "org.tpolecat" %% "doobie-h2" % doobieVersion % Test + "org.tpolecat" %% "doobie-h2" % doobieLegacyVersion % Test ) ) .dependsOn(core) @@ -275,7 +275,6 @@ lazy val docs = project ce3Utils.jvm(scala213Version), datadogMetrics.jvm(scala213Version), natchezDoobie.jvm(scala213Version), - natchezDoobieLegacy.jvm(scala213Version), datadogStable213, natchezCombine.jvm(scala213Version), natchezSlf4j.jvm(scala213Version), diff --git a/docs/docs/docs/natchez-doobie.md b/docs/docs/docs/natchez-doobie.md index 481542c..927778e 100644 --- a/docs/docs/docs/natchez-doobie.md +++ b/docs/docs/docs/natchez-doobie.md @@ -63,7 +63,8 @@ object NatchezDoobie extends IOApp { driver = "org.postgresql.Driver", url = "jdbc:postgresql:example", user = "postgres", - pass = "password" // of course don't hard code these details in your applications! + password = "password", // of course don't hard code these details in your applications! + logHandler = None, ) )