From 90f343f0adacaa9e050fcb233e42a07c37f09711 Mon Sep 17 00:00:00 2001 From: John Nunley Date: Tue, 31 Oct 2023 18:26:06 -0700 Subject: [PATCH] v2.0.0 Signed-off-by: John Nunley --- CHANGELOG.md | 6 ++++++ Cargo.toml | 4 ++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d596730..c2a507b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +# Version 2.0.0 + +- **Breaking:** Remove the `pre_exec` extension function on Unix. It is still available through the `From` 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) diff --git a/Cargo.toml b/Cargo.toml index fa4ebb6..23fcd83 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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 "] edition = "2021" rust-version = "1.63"