Skip to content

Commit b83fec4

Browse files
committed
release: 8.2.1
1 parent 854f074 commit b83fec4

6 files changed

Lines changed: 15 additions & 7 deletions

File tree

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,14 @@ All notable changes to this project will be documented in this file.
44

55
See [conventional commits](https://www.conventionalcommits.org/) for commit guidelines.
66

7+
---
8+
## [8.2.1](https://github.com/watchexec/process-wrap/compare/v8.2.0..8.2.1) - 2025-05-15
9+
10+
11+
- **Deps:** Update nix to 0.30 (#18) - ([fa80dc6](https://github.com/watchexec/process-wrap/commit/fa80dc61f8cdedaf537242100b0e48737ff872c7))
12+
- **Deps:** Update lockfile - ([854f074](https://github.com/watchexec/process-wrap/commit/854f0742e31653ead84ffa57623b283dcbff92f1))
13+
- **Documentation:** Mention ordering requirement - ([573f2ba](https://github.com/watchexec/process-wrap/commit/573f2ba98d48134793b24f522196f0d7abf4d87d))
14+
715
---
816
## [8.2.0](https://github.com/watchexec/process-wrap/compare/v8.1.0..8.2.0) - 2025-01-12
917

CITATION.cff

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ cff-version: 1.2.0
22
message: If you use this software, please cite it using these metadata.
33
title: "process-wrap: extensible wrappers for Rust Command APIs"
44

5-
version: "8.2.0"
6-
date-released: 2025-01-12
5+
version: "8.2.1"
6+
date-released: 2025-05-15
77

88
repository-code: https://github.com/watchexec/process-wrap
99
license: Apache-2.0 OR MIT

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "process-wrap"
3-
version = "8.2.0"
3+
version = "8.2.1"
44

55
authors = ["Félix Saparelli <felix@passcod.name>"]
66
license = "Apache-2.0 OR MIT"

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ The full test suite from command-group was retained: process-wrap has parity on
2626

2727
```toml
2828
[dependencies]
29-
process-wrap = { version = "8.2.0", features = ["tokio1"] }
29+
process-wrap = { version = "8.2.1", features = ["tokio1"] }
3030
```
3131

3232
By default, the crate does nothing, you need to enable either the std or Tokio "frontend". A default
@@ -87,7 +87,7 @@ dbg!(status);
8787

8888
```toml
8989
[dependencies]
90-
process-wrap = { version = "8.2.0", features = ["std"] }
90+
process-wrap = { version = "8.2.1", features = ["std"] }
9191
```
9292

9393
```rust

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
//!
55
//! ```toml
66
//! [dependencies]
7-
//! process-wrap = { version = "8.2.0", features = ["std"] }
7+
//! process-wrap = { version = "8.2.1", features = ["std"] }
88
//! ```
99
//!
1010
//! ```rust,no_run

0 commit comments

Comments
 (0)