diff --git a/CHANGELOG.md b/CHANGELOG.md index 35081e3..f1bcd8d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ ## Next (YYYY-MM-DD) +## v5.0.1 (2023-11-18) + - Use [std's `process_group()`](doc.rust-lang.org/std/os/unix/process/trait.CommandExt.html#tymethod.process_group) ([#16](https://github.com/watchexec/command-group/issues/16)). ## v5.0.0 (2023-11-18) diff --git a/CITATION.cff b/CITATION.cff index 26a050a..c285836 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -2,7 +2,7 @@ cff-version: 1.2.0 message: If you use this software, please cite it using these metadata. title: "Command Group: extension to Command to spawn in a process group" -version: "5.0.0" +version: "5.0.1" date-released: 2023-11-18 repository-code: https://github.com/watchexec/command-group diff --git a/Cargo.toml b/Cargo.toml index 5939959..3f1b0cf 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "command-group" -version = "5.0.0" +version = "5.0.1" authors = ["FĂ©lix Saparelli "] license = "Apache-2.0 OR MIT" diff --git a/README.md b/README.md index a647527..55599ef 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ _Extension to [`Command`](https://doc.rust-lang.org/std/process/struct.Command.h ```toml [dependencies] -command-group = "5.0.0" +command-group = "5.0.1" ``` ```rust @@ -35,7 +35,7 @@ dbg!(status); ```toml [dependencies] -command-group = { version = "5.0.0", features = ["with-tokio"] } +command-group = { version = "5.0.1", features = ["with-tokio"] } tokio = { version = "1.10.0", features = ["full"] } ```