diff --git a/CHANGELOG.md b/CHANGELOG.md index 9dcdc15..1c2558a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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) diff --git a/Cargo.toml b/Cargo.toml index eb2b89f..fd05bff 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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 "] edition = "2018" rust-version = "1.48"