Skip to content

Commit

Permalink
release: 5.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
passcod committed Mar 11, 2024
1 parent 604b0a5 commit 2d2c93a
Show file tree
Hide file tree
Showing 6 changed files with 22 additions and 7 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,18 @@
# Changelog

All notable changes to this project will be documented in this file.

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

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


- **Documentation:** Enable doc_auto_cfg for docsrs - ([d143b09](https://github.com/watchexec/progress-wrap/commit/d143b090207608a7ec1c93df125bb096a15d2e8a))
- **Feature:** Instrument internals (with tracing) - ([5ee79a7](https://github.com/watchexec/progress-wrap/commit/5ee79a722efcdda10776cf2c70563cc4b00cc33b))
- **Repo:** Do versions with cargo-release and git-cliff - ([869dbf8](https://github.com/watchexec/progress-wrap/commit/869dbf8477f1448fb17738bf6e46785f2e8b1044))
- **Repo:** Add dependabot config - ([5a881b2](https://github.com/watchexec/progress-wrap/commit/5a881b2b87ec3752f221be5c46146432b3ced3e8))

- **Repo**: Rename to `process-wrap` and rearchitect.
- **Repo**: Require Rust 1.75 for async trait in trait.
- **Tweak**: Windows: setting `CREATE_SUSPENDED` leaves the process suspended after spawn.
Expand Down
4 changes: 2 additions & 2 deletions CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ cff-version: 1.2.0
message: If you use this software, please cite it using these metadata.
title: "Command Group: extension to Command to spawn in a process group"

version: "5.0.1"
date-released: 2023-11-18
version: "5.1.0"
date: 2024-03-11

repository-code: https://github.com/watchexec/command-group
license: Apache-2.0 OR MIT
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 = "5.0.1"
version = "5.1.0"

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 = "5.1.0", 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 = "5.1.0", 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 = "5.1.0", features = ["std"] }
//! ```
//!
//! ```rust,no_run
Expand Down

0 comments on commit 2d2c93a

Please sign in to comment.