From 580be7ee06d8841300b95d1bd83b537ff035da74 Mon Sep 17 00:00:00 2001 From: Taiki Endo Date: Sun, 27 Nov 2022 16:22:13 +0900 Subject: [PATCH] Release 1.6.0 --- CHANGELOG.md | 6 ++++++ Cargo.toml | 6 +++--- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c941f1b..9dcdc15 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +# Version 1.6.0 + +- Switch from `winapi` to `windows-sys` (#27) +- Remove the dependency on the `once_cell` crate to restore the MSRV (#26) +- Fix build failure with minimal-versions (#28) + # Version 1.5.0 - Implement `AsRawFd` for `ChildStd*` on Unix (#23) diff --git a/Cargo.toml b/Cargo.toml index d8f4df6..66f3185 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.5.0" +version = "1.6.0" authors = ["Stjepan Glavina "] edition = "2018" rust-version = "1.46" @@ -41,5 +41,5 @@ default-features = false features = [ "Win32_Foundation", "Win32_System_Threading", - "Win32_System_WindowsProgramming" -] \ No newline at end of file + "Win32_System_WindowsProgramming" +]