doc: update version

This commit is contained in:
Artemy Egorov 2024-08-14 17:17:31 +03:00
parent 4e3cfc7fec
commit 947c2e123b
3 changed files with 6 additions and 11 deletions

2
Cargo.lock generated
View file

@ -201,7 +201,7 @@ dependencies = [
[[package]] [[package]]
name = "dalet" name = "dalet"
version = "1.0.0-pre.16" version = "1.0.0-pre.17"
dependencies = [ dependencies = [
"ariadne", "ariadne",
"bincode", "bincode",

View file

@ -1,6 +1,6 @@
[package] [package]
name = "dalet" name = "dalet"
version = "1.0.0-pre.16" version = "1.0.0-pre.17"
edition = "2021" edition = "2021"
authors = ["artegoser"] authors = ["artegoser"]
license = "MIT" license = "MIT"

View file

@ -63,7 +63,7 @@ row "center" [
row [ row [
# if no tag is specified but a '[[]]' is present, then the 'el' tag # if no tag is specified but a '[[]]' is present, then the 'el' tag
# with multiple tags body placed # with multiple tags body placed
[[ [[
h2: Features h2: Features
@ -87,23 +87,18 @@ row [
h3: Dev h3: Dev
# {} for multiline strings, indent is automatically trimmed # {} for multiline strings, indent is automatically trimmed
code { code "bash" {
npm install npm install
npm run dev npm run dev
} }
# {~n Text} n is number of minimum spaces
code "markdown" {~4
this is codeblock
}
# {# Text} Text after "{#" not modified # {# Text} Text after "{#" not modified
code "markdown" {# this is codeblock} code "markdown" {# this is codeblock}
]] ]]
[[ [[
h3: Production h3: Production
code { code "bash" {
npm install npm install
npm run build npm run build
npm run start npm run start
@ -112,7 +107,7 @@ row [
[[ [[
h3: Docker h3: Docker
code: docker compose up -d code "bash": docker compose up -d
]] ]]
]] ]]