Skip to content

Commit

Permalink
release: 8.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
passcod committed May 31, 2024
1 parent 9f64922 commit f2e658a
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 6 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.

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

---
## [8.0.2](https://github.com/watchexec/process-wrap/compare/v8.0.1..8.0.2) - 2024-05-31


- **Deps:** Add tracing feature to remove tracing dep if wanted - ([9f64922](https://github.com/watchexec/process-wrap/commit/9f649226dd409f951a0f985cf2717cbe489deba6))

---
## [8.0.1](https://github.com/watchexec/process-wrap/compare/v8.0.0..8.0.1) - 2024-05-31

Expand Down
2 changes: 1 addition & 1 deletion CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ cff-version: 1.2.0
message: If you use this software, please cite it using these metadata.
title: "process-wrap: extensible wrappers for Rust Command APIs"

version: "8.0.1"
version: "8.0.2"
date-released: 2024-05-31

repository-code: https://github.com/watchexec/process-wrap
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "process-wrap"
version = "8.0.1"
version = "8.0.2"

authors = ["Félix Saparelli <[email protected]>"]
license = "Apache-2.0 OR MIT"
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ The full test suite from command-group was retained: process-wrap has parity on

```toml
[dependencies]
process-wrap = { version = "8.0.1", features = ["tokio1"] }
process-wrap = { version = "8.0.2", features = ["tokio1"] }
```

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

```toml
[dependencies]
process-wrap = { version = "8.0.1", features = ["std"] }
process-wrap = { version = "8.0.2", features = ["std"] }
```

```rust
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
//!
//! ```toml
//! [dependencies]
//! process-wrap = { version = "8.0.1", features = ["std"] }
//! process-wrap = { version = "8.0.2", features = ["std"] }
//! ```
//!
//! ```rust,no_run
Expand Down

0 comments on commit f2e658a

Please sign in to comment.