From 52cf42e4a7651f5c51c1ad55d25535433118bc3b Mon Sep 17 00:00:00 2001 From: Alexander Gil Date: Wed, 26 Jan 2022 01:41:30 +0100 Subject: [PATCH] release: v1.7.0 --- CHANGELOG.md | 3 +++ Cargo.lock | 6 +++--- VERSION | 2 +- mdbook_rash/Cargo.toml | 4 ++-- rash_core/Cargo.toml | 4 ++-- rash_derive/Cargo.toml | 2 +- 6 files changed, 12 insertions(+), 9 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 67e2d393..7490690d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,9 @@ * Command module: `transfer_pid_1` (use `transfer_pid` instead) + +## [v1.7.0](https://github.com/rash-sh/rash/tree/v1.7.0) (2022-01-26) + ### Added * Rename `transfer_pid_1` to `transfer_pid` in command module diff --git a/Cargo.lock b/Cargo.lock index 5bfdabe3..9570e162 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -759,7 +759,7 @@ dependencies = [ [[package]] name = "mdbook_rash" -version = "1.6.1" +version = "1.7.0" dependencies = [ "chrono", "clap 2.34.0", @@ -1108,7 +1108,7 @@ dependencies = [ [[package]] name = "rash_core" -version = "1.6.1" +version = "1.7.0" dependencies = [ "byte-unit", "cargo-husky", @@ -1142,7 +1142,7 @@ dependencies = [ [[package]] name = "rash_derive" -version = "1.6.1" +version = "1.7.0" dependencies = [ "proc-macro2", "quote", diff --git a/VERSION b/VERSION index 9c6d6293..bd8bf882 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.6.1 +1.7.0 diff --git a/mdbook_rash/Cargo.toml b/mdbook_rash/Cargo.toml index 8d5ed519..010ac056 100644 --- a/mdbook_rash/Cargo.toml +++ b/mdbook_rash/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mdbook_rash" -version = "1.6.1" +version = "1.7.0" description = "Binary to create doc from `rash` code" authors = ["Pando85 "] edition = "2018" @@ -15,7 +15,7 @@ path = "src/bin/mdbook-rash.rs" doc = false [dependencies] -rash_core = { path = "../rash_core", features = ["docs"], version = "1.6.1" } +rash_core = { path = "../rash_core", features = ["docs"], version = "1.7.0" } schemars = "0.8" clap = "2" chrono = "0.4" diff --git a/rash_core/Cargo.toml b/rash_core/Cargo.toml index fc29ecce..3d80e1d5 100644 --- a/rash_core/Cargo.toml +++ b/rash_core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rash_core" -version = "1.6.1" +version = "1.7.0" description = "Declarative shell scripting using Rust native bindings" authors = ["Pando85 "] edition = "2021" @@ -21,7 +21,7 @@ path = "src/bin/rash.rs" docs = ["rash_derive/docs", "schemars"] [dependencies] -rash_derive = { path = "../rash_derive", version = "1.6.1" } +rash_derive = { path = "../rash_derive", version = "1.7.0" } byte-unit = "4.0" console = "0.14.0" clap = { version = "3.0.6", features = ["std", "color", "derive", "cargo"]} diff --git a/rash_derive/Cargo.toml b/rash_derive/Cargo.toml index 711f9529..6ad8f29c 100644 --- a/rash_derive/Cargo.toml +++ b/rash_derive/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "rash_derive" description = "rash derive crate" -version = "1.6.1" +version = "1.7.0" authors = ["Pando85 "] edition = "2018" license-file = "../LICENSE"