From eaa1821be8786c23251fba0782e5086ab922827a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fe=CC=81lix=20Saparelli?= Date: Sun, 4 Dec 2022 03:16:35 +1300 Subject: [PATCH 1/4] 2.0.0 --- CHANGELOG.md | 2 ++ CITATION.cff | 2 +- Cargo.toml | 2 +- README.md | 4 ++-- 4 files changed, 6 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 26dcbb1..8cd05d7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ ## 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). ## 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 62c4841..abd04b3 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..c948b41 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,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 +36,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"] } ``` From b22be2693c49ea89d68d68888afd4902ab614990 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fe=CC=81lix=20Saparelli?= Date: Sun, 4 Dec 2022 03:18:53 +1300 Subject: [PATCH 2/4] Add to changelog --- CHANGELOG.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8cd05d7..cdbe44d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,9 +2,11 @@ ## Next (YYYY-MM-DD) -## v2.0.0 (2022-12-04) +## v2.0.0 (2022-12-05) - 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) From fe1fab57d565f2df7a45b308f884381c58ec203f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fe=CC=81lix=20Saparelli?= Date: Sun, 4 Dec 2022 03:22:05 +1300 Subject: [PATCH 3/4] Revert release date to today --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index cdbe44d..1be03dc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,7 @@ ## Next (YYYY-MM-DD) -## v2.0.0 (2022-12-05) +## 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)) From 8d8ddd1b051a239ea3f37c1038648c834d5f6783 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fe=CC=81lix=20Saparelli?= Date: Sun, 4 Dec 2022 03:29:28 +1300 Subject: [PATCH 4/4] Fix CI badge --- README.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/README.md b/README.md index c948b41..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