From 78342ab1db9b45ae04da4b5ce999c22096da3e43 Mon Sep 17 00:00:00 2001 From: John Nunley Date: Mon, 25 Sep 2023 09:58:59 -0700 Subject: [PATCH] v1.8.0 Signed-off-by: John Nunley --- CHANGELOG.md | 6 ++++++ Cargo.toml | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1c2558a..4d071d9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +# Version 1.8.0 + +- Move from `signal-hook` to the `async-signal` crate. (#42) +- Reorganize the internals of this crate to be more coherent. (#46) +- Bump to `event-listener` v3.0.0. (#43) + # Version 1.7.0 - Replace direct dependency on libc with rustix. (#31) diff --git a/Cargo.toml b/Cargo.toml index 86f279a..47a4832 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.7.0" +version = "1.8.0" authors = ["Stjepan Glavina "] edition = "2018" rust-version = "1.63"