This commit is contained in:
John Nunley 2023-04-07 10:47:16 -07:00 committed by GitHub
parent 1a14d501cb
commit 5e48a40d6c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 1 deletions

View File

@ -1,3 +1,10 @@
# Version 1.7.0
- Replace direct dependency on libc with rustix. (#31)
- Reduce the number of syscalls used in the `into_stdio` method. (#31)
- Add windows::CommandExt::raw_arg on Rust 1.62+. (#32)
- Update windows-sys to 0.48. (#39)
# Version 1.6.0
- Switch from `winapi` to `windows-sys` (#27)

View File

@ -3,7 +3,7 @@ name = "async-process"
# When publishing a new version:
# - Update CHANGELOG.md
# - Create "v1.x.y" git tag
version = "1.6.0"
version = "1.7.0"
authors = ["Stjepan Glavina <stjepang@gmail.com>"]
edition = "2018"
rust-version = "1.48"