Skip to content

Commit

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

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

---
## [6.0.1](https://github.com/watchexec/progress-wrap/compare/v6.0.0..6.0.1) - 2024-03-11


- **Bugfix:** Std doesn't have kill-on-drop - ([5eaef93](https://github.com/watchexec/progress-wrap/commit/5eaef93d770ebd2c2307347f1d9a35b25a1dc2c1))
- **Bugfix:** Enable kill-on-drop (tokio only) by default - ([5eaef93](https://github.com/watchexec/progress-wrap/commit/5eaef93d770ebd2c2307347f1d9a35b25a1dc2c1))
- **Documentation:** Document that kill-on-drop is Tokio-only - ([7437914](https://github.com/watchexec/progress-wrap/commit/74379146c327d8ff68ac64ce224ec0c213af34c0))
- **Documentation:** Fix changelog style for 6.0.0 - ([fc158c9](https://github.com/watchexec/progress-wrap/commit/fc158c90ece5ecb47f4fe014e02085d80302f660))

---
## [6.0.0](https://github.com/watchexec/progress-wrap/compare/v5.0.1..6.0.0) - 2024-03-11

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: "6.0.0"
version: "6.0.1"
date-released: 2024-03-11

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 = "6.0.0"
version = "6.0.1"

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 = "6.0.0", features = ["tokio1"] }
process-wrap = { version = "6.0.1", 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 = "6.0.0", features = ["std"] }
process-wrap = { version = "6.0.1", 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 = "6.0.0", features = ["std"] }
//! process-wrap = { version = "6.0.1", features = ["std"] }
//! ```
//!
//! ```rust,no_run
Expand Down

0 comments on commit 0686031

Please sign in to comment.