From c3b5e01b3ca47ee7861f0491f8681736422d109a Mon Sep 17 00:00:00 2001 From: John Nunley Date: Mon, 25 Sep 2023 10:40:21 -0700 Subject: [PATCH] v1.4.0 Signed-off-by: John Nunley --- CHANGELOG.md | 8 ++++++++ Cargo.toml | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a2227f2..ba7ee89 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +# Version 1.4.0 + +- Bump MSRV to 1.59. (#44) +- Remove the unused `memchr` dependency. (#38) +- Extract read/write pipes into the `piper` crate, which this crate now uses. (#37) +- Mark as `forbid(unsafe_code)` (#37). +- Set up logging using `tracing`. (#40) + # Version 1.3.1 - Gracefully handle the inability to spawn threads. (#31) diff --git a/Cargo.toml b/Cargo.toml index 283d9a3..eb2fa9f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ name = "blocking" # When publishing a new version: # - Update CHANGELOG.md # - Create "v1.x.y" git tag -version = "1.3.1" +version = "1.4.0" authors = ["Stjepan Glavina "] edition = "2018" rust-version = "1.59"