diff --git a/CHANGELOG.md b/CHANGELOG.md index be2af8b..23110e8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +# Version 2.4.0 + +- Add a new optional `tracing` feature. When enabled, this feature adds logging + to the implementation. By default it is disabled. (#101) +- Fix build failure when compiled together with old versions of `async-signal`. (#96) +- Fix build failure with minimal-versions. (#101) +- Update `windows-sys` to v0.60. (#99) + # Version 2.3.1 - Update rustix to 1.0. (#94) diff --git a/Cargo.toml b/Cargo.toml index 8a5a5d3..6e61ef6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ name = "async-process" # When publishing a new version: # - Update CHANGELOG.md # - Create "v2.x.y" git tag -version = "2.3.1" +version = "2.4.0" authors = ["Stjepan Glavina "] edition = "2021" rust-version = "1.63"