Signed-off-by: John Nunley <dev@notgull.net>
This commit is contained in:
John Nunley 2023-10-31 18:26:06 -07:00 committed by GitHub
parent 54647bef65
commit 90f343f0ad
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 2 deletions

View File

@ -1,3 +1,9 @@
# Version 2.0.0
- **Breaking:** Remove the `pre_exec` extension function on Unix. It is still available through the `From<std::process::Command>` implementation on `Command`. (#54)
- Add the `driver()` function, which allows the processes to be driven without a separate thread. (#52)
- Bump `async-io` to v2.0.0 and `async-channel` to v2.0.0. (#60)
# Version 1.8.1
- Bump `async-signal` to v0.2.3. (#56)

View File

@ -2,8 +2,8 @@
name = "async-process"
# When publishing a new version:
# - Update CHANGELOG.md
# - Create "v1.x.y" git tag
version = "1.8.1"
# - Create "v2.x.y" git tag
version = "2.0.0"
authors = ["Stjepan Glavina <stjepang@gmail.com>"]
edition = "2021"
rust-version = "1.63"