Skip to content

Commit d9065fa

Browse files
committed
release: 9.0.2
1 parent 6e5b4c7 commit d9065fa

6 files changed

Lines changed: 13 additions & 7 deletions

File tree

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@ 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+
## [9.0.2](https://github.com/watchexec/process-wrap/compare/v9.0.1..9.0.2) - 2026-02-11
9+
10+
11+
- **Documentation:** Fix incorrect `JobObject::new()` usage in README (#29) - ([f7dd863](https://github.com/watchexec/process-wrap/commit/f7dd863ec6d7ba2822d1d8a92b257707860c719e))
12+
713
---
814
## [9.0.1](https://github.com/watchexec/process-wrap/compare/v9.0.0..9.0.1) - 2026-01-20
915

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: "9.0.1"
6-
date-released: 2026-01-20
5+
version: "9.0.2"
6+
date-released: 2026-02-11
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 = "9.0.1"
3+
version = "9.0.2"
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
@@ -27,7 +27,7 @@ The full test suite from command-group was retained: process-wrap has parity on
2727

2828
```toml
2929
[dependencies]
30-
process-wrap = { version = "9.0.1", features = ["tokio1"] }
30+
process-wrap = { version = "9.0.2", features = ["tokio1"] }
3131
```
3232

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

8989
```toml
9090
[dependencies]
91-
process-wrap = { version = "9.0.1", features = ["std"] }
91+
process-wrap = { version = "9.0.2", features = ["std"] }
9292
```
9393

9494
```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 = "9.0.1", features = ["std"] }
7+
//! process-wrap = { version = "9.0.2", features = ["std"] }
88
//! ```
99
//!
1010
//! ```rust,no_run

0 commit comments

Comments
 (0)