From af6826f9bc3f5407c1fc0fa258dc17e4d43ea83f Mon Sep 17 00:00:00 2001 From: Sakib Hadziavdic Date: Wed, 4 Sep 2024 11:18:26 +0200 Subject: [PATCH] Update docs --- DEV.md | 6 +----- docs/src/utils/Consts.scala | 4 ++-- examples/cli/hello.sc | 2 +- 3 files changed, 4 insertions(+), 8 deletions(-) diff --git a/DEV.md b/DEV.md index 12811c4..ca05b36 100644 --- a/DEV.md +++ b/DEV.md @@ -19,7 +19,7 @@ git diff git commit -am "msg" -$VERSION="0.1.0" +$VERSION="0.6.0" git commit --allow-empty -am "Release $VERSION" git tag -a $VERSION -m "Release $VERSION" git push --atomic origin main $VERSION @@ -30,11 +30,7 @@ git push --atomic origin main $VERSION # TODOs - matrix of supported features (or require an implicit.. e.g. Supports[ReturningGeneratedColumns]) -- update scastie! -- write tutorials - privatize stuff - neo4j - cassandra - sql parser reorders OFFSET LIMIT ??? -- generate (id, name) + corresponding insert (?, ?) - depending on autoincrement/serial stuff \ No newline at end of file diff --git a/docs/src/utils/Consts.scala b/docs/src/utils/Consts.scala index b1c90b0..be20f9a 100644 --- a/docs/src/utils/Consts.scala +++ b/docs/src/utils/Consts.scala @@ -6,13 +6,13 @@ object Consts: val ArtifactOrg = "ba.sake" val ArtifactName = "squery" - val ArtifactVersion = "0.5.2" + val ArtifactVersion = "0.6.0" val GhHandle = "sake92" val GhProjectName = "squery" val GhUrl = s"https://github.com/${GhHandle}/${GhProjectName}" val GhSourcesUrl = s"${GhUrl}/tree/main" - val ScastieExampleUrl = "https://scastie.scala-lang.org/JArud6GGSLOmYyxCNsNdNw" + val ScastieExampleUrl = "https://scastie.scala-lang.org/39YRVAiHToGTPNE6RcWQ9Q" val tq = """"""""" diff --git a/examples/cli/hello.sc b/examples/cli/hello.sc index 4aa384c..e52eb6f 100644 --- a/examples/cli/hello.sc +++ b/examples/cli/hello.sc @@ -1,5 +1,5 @@ //> using scala "3.3.1" -//> using dep "ba.sake::squery:0.5.2" +//> using dep "ba.sake::squery:0.6.0" //> using dep "com.h2database:h2:2.1.214" //> using dep "com.lihaoyi::pprint:0.9.0"