diff --git a/CHANGELOG.md b/CHANGELOG.md index 26dcbb1..1be03dc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,11 @@ ## Next (YYYY-MM-DD) +## v2.0.0 (2022-12-04) + - Increase MSRV to 1.60.0 and change policy for increasing it (no longer a breaking change). +- Wait for all processes in the process group, avoiding zombies. ([#7](https://github.com/watchexec/command-group/pull/7)) +- Update `nix` to 0.26 and limit features. ([#8](https://github.com/watchexec/command-group/pull/8)) ## v1.0.8 (2021-10-16) diff --git a/CITATION.cff b/CITATION.cff index 3e7358f..c92ac74 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-10-16 +date-released: 2022-12-04 repository-code: https://github.com/watchexec/command-group license: Apache-2.0 OR MIT diff --git a/Cargo.toml b/Cargo.toml index 55de775..48e2b0b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "command-group" -version = "1.0.8" +version = "2.0.0" authors = ["FĂ©lix Saparelli "] license = "Apache-2.0 OR MIT" diff --git a/README.md b/README.md index 14b8890..9b61b3f 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ [![Crate release version](https://flat.badgen.net/crates/v/command-group)](https://crates.io/crates/command-group) [![Crate license: Apache 2.0 or MIT](https://flat.badgen.net/badge/license/Apache%202.0%20or%20MIT)][copyright] -[![CI status on main branch](https://github.com/watchexec/command-group/actions/workflows/main.yml/badge.svg)](https://github.com/watchexec/command-group/actions/workflows/main.yml) +[![CI status](https://github.com/watchexec/command-group/actions/workflows/test.yml/badge.svg)](https://github.com/watchexec/command-group/actions/workflows/test.yml) # Command Group @@ -12,7 +12,6 @@ _Extension to [`Command`](https://doc.rust-lang.org/std/process/struct.Command.h - Only the last five stable versions are supported. - MSRV increases within that range at publish time will not incur major version bumps. -[caretaker]: ./CARETAKERS.md [copyright]: ./COPYRIGHT [docs]: https://docs.rs/command-group @@ -20,7 +19,7 @@ _Extension to [`Command`](https://doc.rust-lang.org/std/process/struct.Command.h ```toml [dependencies] -command-group = "1.0.8" +command-group = "2.0.0" ``` ```rust @@ -36,7 +35,7 @@ dbg!(status); ```toml [dependencies] -command-group = { version = "1.0.8", features = ["with-tokio"] } +command-group = { version = "2.0.0", features = ["with-tokio"] } tokio = { version = "1.10.0", features = ["full"] } ```