diff --git a/CHANGELOG.md b/CHANGELOG.md index 7e0b594..20ed9c4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +# Version 1.5.0 + +- Implement `AsRawFd` for `ChildStd*` (#23) +- Implement I/O safety traits on Rust 1.63+ (#23) + # Version 1.4.0 - `Command::spawn` and `Command::output` no longer unconfigure stdio streams (#20) diff --git a/Cargo.toml b/Cargo.toml index 4879ce0..84b6175 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.4.0" +version = "1.5.0" authors = ["Stjepan Glavina "] edition = "2018" rust-version = "1.46"