Skip to content

Commit

Permalink
Release 2.0.0 (#12)
Browse files Browse the repository at this point in the history
  • Loading branch information
passcod committed Dec 3, 2022
1 parent 6a647e9 commit 3b3211d
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 6 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Expand Up @@ -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)

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: 2021-10-16
date-released: 2022-12-04

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 = "1.0.8"
version = "2.0.0"

authors = ["Félix Saparelli <felix@passcod.name>"]
license = "Apache-2.0 OR MIT"
Expand Down
7 changes: 3 additions & 4 deletions 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

Expand All @@ -12,15 +12,14 @@ _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

## Quick start

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

```rust
Expand All @@ -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"] }
```

Expand Down

0 comments on commit 3b3211d

Please sign in to comment.