diff --git a/Cargo.lock b/Cargo.lock index 15bf13f..87694ac 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -64,7 +64,7 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" [[package]] name = "cli" -version = "0.1.0" +version = "1.0.0" dependencies = [ "colored", "core", @@ -94,7 +94,7 @@ dependencies = [ [[package]] name = "core" -version = "0.1.0" +version = "1.0.0" dependencies = [ "serde", "serde_yaml", diff --git a/Changes.md b/Changes.md index 044f6a6..414f764 100644 --- a/Changes.md +++ b/Changes.md @@ -1,3 +1,18 @@ + +## 1.0.0 - 2024-11-1 + +- Passing param to other tasks +- Stream std-out and std-in +- Optional 'this' in @this.taskname +- Design logo + CLI theme update +- '--no-interactive' switch to skip yes no questions and error if env is not set. +- open_link print link if can't open browser +- env validation variant new syntax (without "!" ) +- core function docs +- REPL (Run Execute Print Loop) +- Fix arrow keys press in 'ask_user()' +- Bug fix: Env variable should be unset after task is done + ## test - 2024-11-1 - First release upon an unsuspecting world. diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 3628194..5394d66 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cli" -version = "0.1.0" +version = "1.0.0" edition = "2021" [dependencies] diff --git a/core/Cargo.toml b/core/Cargo.toml index 85dd4f0..04e1ce9 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "core" -version = "0.1.0" +version = "1.0.0" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html