Skip to content

Commit

Permalink
Release 2.0.1 (#14)
Browse files Browse the repository at this point in the history
  • Loading branch information
passcod committed Dec 28, 2022
1 parent df3ddd2 commit 9701d77
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Expand Up @@ -2,6 +2,10 @@

## Next (YYYY-MM-DD)

## v2.0.1 (2022-12-28)

- Fix bug on Windows where the wrong pointer was being null checked, leading to timeout errors. ([#13](https://github.com/watchexec/command-group/pull/13))

## v2.0.0 (2022-12-04)

- Increase MSRV to 1.60.0 and change policy for increasing it (no longer a breaking change).
Expand Down
2 changes: 1 addition & 1 deletion CITATION.cff
Expand Up @@ -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: 2022-12-04
date-released: 2022-12-28

repository-code: https://github.com/watchexec/command-group
license: Apache-2.0 OR MIT
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "command-group"
version = "2.0.0"
version = "2.0.1"

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

```toml
[dependencies]
command-group = "2.0.0"
command-group = "2.0.1"
```

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

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

Expand Down

0 comments on commit 9701d77

Please sign in to comment.