diff --git a/CHANGELOG.md b/CHANGELOG.md index 97b8c7c..9e314f8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ ## Next (YYYY-MM-DD) +## v1.0.5 (2021-08-13) + - Internal: change usage of `feature = "tokio"` to `feature = "with-tokio"`. - Documentation: remove wrong mention of blocking reads on `AsyncGroupChild::wait_with_output()`. diff --git a/CITATION.cff b/CITATION.cff index 029a550..75173ab 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -5,7 +5,7 @@ message: If you use this software, please cite it using these metadata. title: Command Group version: 1.0.4 -date-released: 2021-07-26 +date-released: 2021-08-13 repository-code: https://github.com/watchexec/command-group license: Apache-2.0 OR MIT diff --git a/Cargo.toml b/Cargo.toml index 1b83a01..2861f61 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "command-group" -version = "1.0.4" +version = "1.0.5" authors = ["FĂ©lix Saparelli "] license = "Apache-2.0 OR MIT" diff --git a/README.md b/README.md index 526c315..3714cfe 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ _Extension to [`Command`](https://doc.rust-lang.org/std/process/struct.Command.h ```toml [dependencies] -command-group = "1.0.4" +command-group = "1.0.5" ``` ```rust @@ -37,7 +37,7 @@ dbg!(status); ```toml [dependencies] -command-group = { version = "1.0.4", features = ["with-tokio"] } +command-group = { version = "1.0.5", features = ["with-tokio"] } tokio = { version = "1.10.0", features = ["full"] } ```