From fd596d387467fe75629b5a20796e50946340e4ba Mon Sep 17 00:00:00 2001 From: sake92 Date: Fri, 20 Sep 2024 16:17:58 +0000 Subject: [PATCH] =?UTF-8?q?Deploying=20to=20gh-pages=20from=20@=20sake92/s?= =?UTF-8?q?query@198bfb3766581c042d00cdd52e727fc13b6fa40c=20=F0=9F=9A=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tutorials/code-gen.html | 8 ++++---- tutorials/index.html | 6 +++--- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/tutorials/code-gen.html b/tutorials/code-gen.html index 2547f6f..a913481 100644 --- a/tutorials/code-gen.html +++ b/tutorials/code-gen.html @@ -46,10 +46,10 @@ This means you can add your own methods/vals to the generated code, without fear that the codegen will remove it.
Of course, it is best to use scalafmt after codegen so that the diff is minimal.

Standalone generator

You can use Ammonite to test the generator:

-
import $ivy.`ba.sake:squery-generator_2.13:0.6.2`
-import $ivy.`ba.sake::squery:0.6.2`
+
import $ivy.`ba.sake:squery-generator_2.13:0.6.3`
+import $ivy.`ba.sake::squery:0.6.3`
 // if using Postgres JSONB
-// import $ivy.`ba.sake::squery-postgres-jawn:0.6.2`
+// import $ivy.`ba.sake::squery-postgres-jawn:0.6.3`
 import $ivy.`org.postgresql:postgresql:42.7.4`
 import $ivy.`com.zaxxer:HikariCP:5.1.0`
 
@@ -72,7 +72,7 @@
 }
 

Mill plugin

Squery provides a Mill plugin:

-
import $ivy.`ba.sake::mill-squery-generator_mill0.11:0.6.2`
+
import $ivy.`ba.sake::mill-squery-generator_mill0.11:0.6.3`
 import ba.sake.squery.generator._
 import ba.sake.squery.generator.mill.SqueryGeneratorModule
 
diff --git a/tutorials/index.html b/tutorials/index.html
index 127192c..b8c157d 100644
--- a/tutorials/index.html
+++ b/tutorials/index.html
@@ -34,18 +34,18 @@
       }
     

Quickstart

Hello world!

Mill

def ivyDeps = super.ivyDeps() ++ Agg(
-  ivy"ba.sake::squery:0.6.2"
+  ivy"ba.sake::squery:0.6.3"
   // <add your favorite JDBC driver>
   // <preferably add a connection pool like HikariCP too>
 )
 

Sbt

libraryDependencies ++= Seq(
-  "ba.sake" %% "squery" % "0.6.2"
+  "ba.sake" %% "squery" % "0.6.3"
   // <add your favorite JDBC driver>
   // <preferably add a connection pool like HikariCP too>
 )
 
-

Scala CLI

//> using dep ba.sake::squery:0.6.2
+

Scala CLI

//> using dep ba.sake::squery:0.6.3
 // <add your favorite JDBC driver>
 // <preferably add a connection pool like HikariCP too>