From 8458bed55572a1ec205a237c89d50738b9118b51 Mon Sep 17 00:00:00 2001 From: Sakib Hadziavdic Date: Sat, 24 Aug 2024 22:42:18 +0200 Subject: [PATCH] Release 0.5.0 --- DEV.md | 2 +- docs/src/files/tutorials/TutorialPage.scala | 3 ++- docs/src/utils/Consts.scala | 2 +- examples/cli/hello.sc | 2 +- 4 files changed, 5 insertions(+), 4 deletions(-) diff --git a/DEV.md b/DEV.md index 9ec9876..8e2d8b9 100644 --- a/DEV.md +++ b/DEV.md @@ -19,7 +19,7 @@ git diff git commit -am "msg" -$VERSION="0.4.1" +$VERSION="0.5.0" git commit --allow-empty -am "Release $VERSION" git tag -a $VERSION -m "Release $VERSION" git push --atomic origin main $VERSION diff --git a/docs/src/files/tutorials/TutorialPage.scala b/docs/src/files/tutorials/TutorialPage.scala index 9e0525e..b96faa2 100644 --- a/docs/src/files/tutorials/TutorialPage.scala +++ b/docs/src/files/tutorials/TutorialPage.scala @@ -7,7 +7,8 @@ trait TutorialPage extends DocPage { override def categoryPosts = List( Index, - GettingStarted + GettingStarted, + CodeGen ) override def pageCategory = Some("Tutorials") diff --git a/docs/src/utils/Consts.scala b/docs/src/utils/Consts.scala index eb71abf..8092bc0 100644 --- a/docs/src/utils/Consts.scala +++ b/docs/src/utils/Consts.scala @@ -6,7 +6,7 @@ object Consts: val ArtifactOrg = "ba.sake" val ArtifactName = "squery" - val ArtifactVersion = "0.4.1" + val ArtifactVersion = "0.5.0" val GhHandle = "sake92" val GhProjectName = "squery" diff --git a/examples/cli/hello.sc b/examples/cli/hello.sc index da71c47..1891bfc 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.4.0" +//> using dep "ba.sake::squery:0.5.0" //> using dep "com.h2database:h2:2.1.214" //> using dep "com.lihaoyi::pprint:0.9.0"