Skip to content

Commit

Permalink
5.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
passcod committed Nov 18, 2023
1 parent faf0486 commit 7d662f2
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 5 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## Next (YYYY-MM-DD)

## v5.0.0 (2023-11-18)

- Change `UnixChildExt::signal` to take `&self` instead of `&mut self`.
- Grouped child `wait`s using upstream `::wait` and `::try_wait` in addition to the internal pgid-based logic, to help with cancellation.
- Optimisations in `tokio::Child::wait()`. ([#25](https://github.com/watchexec/command-group/issues/25), [#26](https://github.com/watchexec/command-group/issues/26))
Expand Down
4 changes: 2 additions & 2 deletions CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ 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: "4.1.0"
date-released: 2023-11-05
version: "5.0.0"
date-released: 2023-11-18

repository-code: https://github.com/watchexec/command-group
license: Apache-2.0 OR MIT
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "command-group"
version = "4.1.0"
version = "5.0.0"

authors = ["Félix Saparelli <felix@passcod.name>"]
license = "Apache-2.0 OR MIT"
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ _Extension to [`Command`](https://doc.rust-lang.org/std/process/struct.Command.h

```toml
[dependencies]
command-group = "4.1.0"
command-group = "5.0.0"
```

```rust
Expand All @@ -35,7 +35,7 @@ dbg!(status);

```toml
[dependencies]
command-group = { version = "4.1.0", features = ["with-tokio"] }
command-group = { version = "5.0.0", features = ["with-tokio"] }
tokio = { version = "1.10.0", features = ["full"] }
```

Expand Down

0 comments on commit 7d662f2

Please sign in to comment.