Skip to content

Commit

Permalink
Bump version in docs
Browse files Browse the repository at this point in the history
  • Loading branch information
sake92 committed Feb 1, 2024
1 parent cfaa54f commit c03f9db
Show file tree
Hide file tree
Showing 14 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion DEV.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
git diff
git commit -am "msg"

$VERSION="0.0.21"
$VERSION="0.0.22"
git commit --allow-empty -m "Release $VERSION"
git tag -a $VERSION -m "Release $VERSION"
git push --atomic origin main $VERSION
Expand Down
2 changes: 1 addition & 1 deletion docs/src/utils/Consts.scala
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ object Consts:

val ArtifactOrg = "ba.sake"
val ArtifactName = "sharaf"
val ArtifactVersion = "0.0.21"
val ArtifactVersion = "0.0.22"

val GhHandle = "sake92"
val GhProjectName = "sharaf"
Expand Down
2 changes: 1 addition & 1 deletion examples/scala-cli/form_handling.sc
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//> using scala "3.3.1"
//> using dep ba.sake::sharaf:0.0.21
//> using dep ba.sake::sharaf:0.0.22

import io.undertow.Undertow
import ba.sake.formson.FormDataRW
Expand Down
2 changes: 1 addition & 1 deletion examples/scala-cli/hello.sc
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//> using scala "3.3.1"
//> using dep ba.sake::sharaf:0.0.21
//> using dep ba.sake::sharaf:0.0.22

import io.undertow.Undertow
import ba.sake.sharaf.*, routing.*
Expand Down
2 changes: 1 addition & 1 deletion examples/scala-cli/html.sc
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//> using scala "3.3.1"
//> using dep ba.sake::sharaf:0.0.21
//> using dep ba.sake::sharaf:0.0.22

import io.undertow.Undertow
import scalatags.Text.all.*
Expand Down
2 changes: 1 addition & 1 deletion examples/scala-cli/htmx/htmx_click_edit.sc
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//> using scala "3.3.1"
//> using dep ba.sake::sharaf:0.0.21
//> using dep ba.sake::sharaf:0.0.22

// https://htmx.org/examples/click-to-edit/
import io.undertow.Undertow
Expand Down
2 changes: 1 addition & 1 deletion examples/scala-cli/htmx/htmx_load_snippet.sc
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//> using scala "3.3.1"
//> using dep ba.sake::sharaf:0.0.21
//> using dep ba.sake::sharaf:0.0.22

import io.undertow.Undertow
import scalatags.Text.all.*
Expand Down
2 changes: 1 addition & 1 deletion examples/scala-cli/json_api.sc
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//> using scala "3.3.1"
//> using dep ba.sake::sharaf:0.0.21
//> using dep ba.sake::sharaf:0.0.22

import io.undertow.Undertow
import ba.sake.tupson.JsonRW
Expand Down
2 changes: 1 addition & 1 deletion examples/scala-cli/json_api.test.scala
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//> using scala "3.3.1"
//> using dep ba.sake::sharaf:0.0.21
//> using dep ba.sake::sharaf:0.0.22
//> using test.dep org.scalameta::munit::0.7.29

import io.undertow.Undertow
Expand Down
2 changes: 1 addition & 1 deletion examples/scala-cli/path_params.sc
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//> using scala "3.3.1"
//> using dep ba.sake::sharaf:0.0.21
//> using dep ba.sake::sharaf:0.0.22

import io.undertow.Undertow
import ba.sake.sharaf.*, routing.*
Expand Down
2 changes: 1 addition & 1 deletion examples/scala-cli/query_params.sc
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//> using scala "3.3.1"
//> using dep ba.sake::sharaf:0.0.21
//> using dep ba.sake::sharaf:0.0.22

import io.undertow.Undertow
import ba.sake.querson.QueryStringRW
Expand Down
2 changes: 1 addition & 1 deletion examples/scala-cli/sql_db.sc
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
//> using scala "3.3.1"
//> using dep org.postgresql:postgresql:42.7.1
//> using dep com.zaxxer:HikariCP:5.1.0
//> using dep ba.sake::sharaf:0.0.21
//> using dep ba.sake::sharaf:0.0.22
//> using dep ba.sake::squery:0.0.16

import io.undertow.Undertow
Expand Down
2 changes: 1 addition & 1 deletion examples/scala-cli/static_files.sc
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//> using scala "3.3.1"
//> using dep ba.sake::sharaf:0.0.21
//> using dep ba.sake::sharaf:0.0.22

import io.undertow.Undertow
import ba.sake.sharaf.*, routing.*
Expand Down
2 changes: 1 addition & 1 deletion examples/scala-cli/validation.sc
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//> using scala "3.3.1"
//> using dep ba.sake::sharaf:0.0.21
//> using dep ba.sake::sharaf:0.0.22

import io.undertow.Undertow
import ba.sake.querson.QueryStringRW
Expand Down

0 comments on commit c03f9db

Please sign in to comment.