Skip to content

Commit abe5d75

Browse files
committed
release
1 parent d1c47dc commit abe5d75

File tree

6 files changed

+19
-44
lines changed

6 files changed

+19
-44
lines changed

.buildnumber

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
9
1+
10

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
## CHANGELOG
22

3-
### v0.9.3
3+
### v0.9.3 (2024-01-19)
44

55
* Fix: if/else condition with a command that accepts empty values #390
66
* Enhancement: dump commands will print to output if no output variable is defined

Cargo.lock

Lines changed: 14 additions & 14 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/sdk.md

Lines changed: 0 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -425,7 +425,6 @@ print
425425

426426
<a name="std__Println"></a>
427427
## `std::Println`
428-
429428
```sh
430429
println [--style|-s bold|underline|italic|dimmed|blink|strikethrough]* [--color|-c black|red|green|yellow|blue|magenta|cyan|white|bright_<color>|rgb_<red>_<green>_<blue>] [--background-color|-bgc black|red|green|yellow|blue|magenta|cyan|white|bright_<color>|rgb_<red>_<green>_<blue>] [arg]*
431430
```
@@ -459,30 +458,6 @@ println -s underline -s bold -c bright_green -bgc red Hello World
459458
```
460459

461460

462-
#### Source:
463-
<details>
464-
<summary>Show Source</summary>
465-
466-
```sh
467-
468-
scope::println::count = set 0
469-
470-
if not array_is_empty ${scope::println::arguments}
471-
scope::println::commandline = array_join ${scope::println::arguments} "\" \""
472-
scope::println::commandline = set "\"${scope::println::commandline}"
473-
scope::println::commandline = substring ${scope::println::commandline} -2
474-
scope::println::count = print %{scope::println::commandline}
475-
end
476-
477-
echo
478-
479-
set ${scope::println::count}
480-
481-
```
482-
</details>
483-
484-
485-
486461
### Aliases:
487462
println
488463

duckscript_cli/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "duckscript_cli"
3-
version = "0.9.2"
3+
version = "0.9.3"
44
authors = ["Sagie Gur-Ari <sagiegurari@gmail.com>"]
55
description = "The duckscript command line executable."
66
license = "Apache-2.0"
@@ -28,7 +28,7 @@ path = "src/main.rs"
2828

2929
[dependencies]
3030
duckscript = { version = "^0.8.0", path = "../duckscript" }
31-
duckscriptsdk = { version = "^0.9.1", path = "../duckscript_sdk", default-features = false }
31+
duckscriptsdk = { version = "^0.9.3", path = "../duckscript_sdk", default-features = false }
3232

3333
[features]
3434
tls-rustls = ["duckscriptsdk/tls-rustls"]

duckscript_sdk/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "duckscriptsdk"
3-
version = "0.9.2"
3+
version = "0.9.3"
44
authors = ["Sagie Gur-Ari <sagiegurari@gmail.com>"]
55
description = "The duckscript SDK."
66
license = "Apache-2.0"

0 commit comments

Comments
 (0)