From f0d115f600293ba62d96ff277c04411fa44162c5 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 22 Mar 2023 02:02:01 +0000 Subject: [PATCH] release: watchexec v2.3.0 (#550) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: github-actions Co-authored-by: Félix Saparelli --- Cargo.lock | 2 +- crates/cli/Cargo.toml | 2 +- crates/filterer/globset/Cargo.toml | 2 +- crates/filterer/ignore/Cargo.toml | 2 +- crates/filterer/tagged/Cargo.toml | 2 +- crates/lib/CHANGELOG.md | 8 ++++++++ crates/lib/Cargo.toml | 2 +- 7 files changed, 14 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 5ddca20..414b7ab 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3839,7 +3839,7 @@ checksum = "0046fef7e28c3804e5e38bfa31ea2a0f73905319b677e57ebe37e49358989b5d" [[package]] name = "watchexec" -version = "2.2.0" +version = "2.3.0" dependencies = [ "async-priority-channel", "async-recursion", diff --git a/crates/cli/Cargo.toml b/crates/cli/Cargo.toml index e221b19..2bcd474 100644 --- a/crates/cli/Cargo.toml +++ b/crates/cli/Cargo.toml @@ -60,7 +60,7 @@ version = "1.2.0" path = "../project-origins" [dependencies.watchexec] -version = "2.2.0" +version = "2.3.0" path = "../lib" [dependencies.watchexec-events] diff --git a/crates/filterer/globset/Cargo.toml b/crates/filterer/globset/Cargo.toml index bcd2c94..196b8a0 100644 --- a/crates/filterer/globset/Cargo.toml +++ b/crates/filterer/globset/Cargo.toml @@ -24,7 +24,7 @@ version = "1.2.0" path = "../../ignore-files" [dependencies.watchexec] -version = "2.2.0" +version = "2.3.0" path = "../../lib" [dependencies.watchexec-filterer-ignore] diff --git a/crates/filterer/ignore/Cargo.toml b/crates/filterer/ignore/Cargo.toml index 9642f7f..2eb1945 100644 --- a/crates/filterer/ignore/Cargo.toml +++ b/crates/filterer/ignore/Cargo.toml @@ -24,7 +24,7 @@ version = "1.2.0" path = "../../ignore-files" [dependencies.watchexec] -version = "2.2.0" +version = "2.3.0" path = "../../lib" [dependencies.watchexec-signals] diff --git a/crates/filterer/tagged/Cargo.toml b/crates/filterer/tagged/Cargo.toml index 3e74ff1..be8aa4d 100644 --- a/crates/filterer/tagged/Cargo.toml +++ b/crates/filterer/tagged/Cargo.toml @@ -37,7 +37,7 @@ features = [ ] [dependencies.watchexec] -version = "2.2.0" +version = "2.3.0" path = "../../lib" [dependencies.watchexec-filterer-ignore] diff --git a/crates/lib/CHANGELOG.md b/crates/lib/CHANGELOG.md index 2460a44..f31ae97 100644 --- a/crates/lib/CHANGELOG.md +++ b/crates/lib/CHANGELOG.md @@ -2,6 +2,14 @@ ## Next (YYYY-MM-DD) +## v2.3.0 (2023-03-22) + +- New: `Outcome::Race` and `Outcome::race()` ([#548](https://github.com/watchexec/watchexec/pull/548)) +- New: `Outcome::wait_timeout()` ([#548](https://github.com/watchexec/watchexec/pull/548)) +- New: `Outcome::sequence()` ([#548](https://github.com/watchexec/watchexec/pull/548)) +- Fix: `kill_on_drop(true)` set for group commands as well as ungrouped ([#549](https://github.com/watchexec/watchexec/pull/549)) +- Some `debug!`s upgraded to `info!`s, based on experience reading logs ([#547](https://github.com/watchexec/watchexec/pull/547)) + ## v2.2.0 (2023-03-18) - Ditch MSRV policy. The `rust-version` indication will remain, for the minimum estimated Rust version for the code features used in the crate's own code, but dependencies may have already moved on. From now on, only latest stable is assumed and tested for. ([#510](https://github.com/watchexec/watchexec/pull/510)) diff --git a/crates/lib/Cargo.toml b/crates/lib/Cargo.toml index c850386..83eba96 100644 --- a/crates/lib/Cargo.toml +++ b/crates/lib/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "watchexec" -version = "2.2.0" +version = "2.3.0" authors = ["Matt Green ", "Félix Saparelli "] license = "Apache-2.0"