From a59e455baf0d948155e9dfec4f2c2eeaa922587f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fe=CC=81lix=20Saparelli?= Date: Tue, 12 Mar 2024 05:20:21 +1300 Subject: [PATCH] release: 5.3.0 --- CHANGELOG.md | 6 ++++++ CITATION.cff | 2 +- Cargo.lock | 2 +- Cargo.toml | 2 +- README.md | 4 ++-- src/lib.rs | 2 +- 6 files changed, 12 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6d0ff34..5875eb8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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. +--- +## [5.3.0](https://github.com/watchexec/progress-wrap/compare/v5.2.0..5.3.0) - 2024-03-11 + + +- **Bugfix:** Restore Signal re-export on unix - ([bd79a58](https://github.com/watchexec/progress-wrap/commit/bd79a584ac5955e0692d0ed1b05d5647ba826622)) + --- ## [5.2.0](https://github.com/watchexec/progress-wrap/compare/v5.1.0..5.2.0) - 2024-03-11 diff --git a/CITATION.cff b/CITATION.cff index bc01cbf..845ba11 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -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: "5.2.0" +version: "5.3.0" date-released: 2024-03-11 repository-code: https://github.com/watchexec/process-wrap diff --git a/Cargo.lock b/Cargo.lock index 184f1f6..e59ecbd 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -289,7 +289,7 @@ dependencies = [ [[package]] name = "process-wrap" -version = "5.2.0" +version = "5.3.0" dependencies = [ "futures", "indexmap", diff --git a/Cargo.toml b/Cargo.toml index 6329fbe..bfbb638 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "process-wrap" -version = "5.2.0" +version = "5.3.0" authors = ["FĂ©lix Saparelli "] license = "Apache-2.0 OR MIT" diff --git a/README.md b/README.md index fad013c..d7d78d1 100644 --- a/README.md +++ b/README.md @@ -26,7 +26,7 @@ The full test suite from command-group was retained: process-wrap has parity on ```toml [dependencies] -process-wrap = { version = "5.2.0", features = ["tokio1"] } +process-wrap = { version = "5.3.0", features = ["tokio1"] } ``` By default, the crate does nothing, you need to enable either the std or Tokio "frontend". A default @@ -87,7 +87,7 @@ dbg!(status); ```toml [dependencies] -process-wrap = { version = "5.2.0", features = ["std"] } +process-wrap = { version = "5.3.0", features = ["std"] } ``` ```rust diff --git a/src/lib.rs b/src/lib.rs index 7689b98..0cc3329 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -4,7 +4,7 @@ //! //! ```toml //! [dependencies] -//! process-wrap = { version = "5.2.0", features = ["std"] } +//! process-wrap = { version = "5.3.0", features = ["std"] } //! ``` //! //! ```rust,no_run