release: watchexec v2.3.0 (#550)

Co-authored-by: github-actions <github-actions@github.com>
Co-authored-by: Félix Saparelli <felix@passcod.name>
This commit is contained in:
github-actions[bot] 2023-03-22 02:02:01 +00:00 committed by GitHub
parent ce9c5d6b22
commit f0d115f600
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
7 changed files with 14 additions and 6 deletions

2
Cargo.lock generated
View File

@ -3839,7 +3839,7 @@ checksum = "0046fef7e28c3804e5e38bfa31ea2a0f73905319b677e57ebe37e49358989b5d"
[[package]]
name = "watchexec"
version = "2.2.0"
version = "2.3.0"
dependencies = [
"async-priority-channel",
"async-recursion",

View File

@ -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]

View File

@ -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]

View File

@ -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]

View File

@ -37,7 +37,7 @@ features = [
]
[dependencies.watchexec]
version = "2.2.0"
version = "2.3.0"
path = "../../lib"
[dependencies.watchexec-filterer-ignore]

View File

@ -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))

View File

@ -1,6 +1,6 @@
[package]
name = "watchexec"
version = "2.2.0"
version = "2.3.0"
authors = ["Matt Green <mattgreenrocks@gmail.com>", "Félix Saparelli <felix@passcod.name>"]
license = "Apache-2.0"