Skip to content

Commit

Permalink
release
Browse files Browse the repository at this point in the history
  • Loading branch information
sagiegurari committed Jan 19, 2024
1 parent d1c47dc commit abe5d75
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 44 deletions.
2 changes: 1 addition & 1 deletion .buildnumber
Original file line number Diff line number Diff line change
@@ -1 +1 @@
9
10
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
## CHANGELOG

### v0.9.3
### v0.9.3 (2024-01-19)

* Fix: if/else condition with a command that accepts empty values #390
* Enhancement: dump commands will print to output if no output variable is defined
Expand Down
28 changes: 14 additions & 14 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

25 changes: 0 additions & 25 deletions docs/sdk.md
Original file line number Diff line number Diff line change
Expand Up @@ -425,7 +425,6 @@ print

<a name="std__Println"></a>
## `std::Println`

```sh
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]*
```
Expand Down Expand Up @@ -459,30 +458,6 @@ println -s underline -s bold -c bright_green -bgc red Hello World
```


#### Source:
<details>
<summary>Show Source</summary>

```sh

scope::println::count = set 0

if not array_is_empty ${scope::println::arguments}
scope::println::commandline = array_join ${scope::println::arguments} "\" \""
scope::println::commandline = set "\"${scope::println::commandline}"
scope::println::commandline = substring ${scope::println::commandline} -2
scope::println::count = print %{scope::println::commandline}
end

echo

set ${scope::println::count}

```
</details>
### Aliases:
println

Expand Down
4 changes: 2 additions & 2 deletions duckscript_cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "duckscript_cli"
version = "0.9.2"
version = "0.9.3"
authors = ["Sagie Gur-Ari <[email protected]>"]
description = "The duckscript command line executable."
license = "Apache-2.0"
Expand Down Expand Up @@ -28,7 +28,7 @@ path = "src/main.rs"

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

[features]
tls-rustls = ["duckscriptsdk/tls-rustls"]
Expand Down
2 changes: 1 addition & 1 deletion duckscript_sdk/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "duckscriptsdk"
version = "0.9.2"
version = "0.9.3"
authors = ["Sagie Gur-Ari <[email protected]>"]
description = "The duckscript SDK."
license = "Apache-2.0"
Expand Down

0 comments on commit abe5d75

Please sign in to comment.