Skip to content

Commit 9c526fe

Browse files
committed
release: 9.0.3
1 parent 5d19d8a commit 9c526fe

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+
## [9.0.3](https://github.com/watchexec/process-wrap/compare/v9.0.2..9.0.3) - 2026-02-12
9+
10+
11+
- **Bugfix:** Docs.rs build - ([5d19d8a](https://github.com/watchexec/process-wrap/commit/5d19d8a6f965c41f86abcdd9710025111142262b))
12+
- **Deps:** Update nix 0.31 - ([2e613c6](https://github.com/watchexec/process-wrap/commit/2e613c6697cf64415de1389e81879f6578589608))
13+
- **Documentation:** Update readme - ([b1422d7](https://github.com/watchexec/process-wrap/commit/b1422d75b148ec5b211a8ce78faf45a83c42a9c0))
14+
715
---
816
## [9.0.2](https://github.com/watchexec/process-wrap/compare/v9.0.1..9.0.2) - 2026-02-11
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: "9.0.2"
6-
date-released: 2026-02-11
5+
version: "9.0.3"
6+
date-released: 2026-02-12
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.2"
3+
version = "9.0.3"
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.2", features = ["tokio1"] }
30+
process-wrap = { version = "9.0.3", features = ["tokio1"] }
3131
```
3232

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

8585
```toml
8686
[dependencies]
87-
process-wrap = { version = "9.0.2", features = ["std"] }
87+
process-wrap = { version = "9.0.3", features = ["std"] }
8888
```
8989

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

0 commit comments

Comments
 (0)