diff --git a/CHANGELOG.md b/CHANGELOG.md index f4583b0..3f060b7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +# 0.1.5 (2024-05-28) + +- Add `server::graceful::GracefulShutdown` helper to coordinate over many connections. +- Add `server::conn::auto::Connection::into_owned()` to unlink lifetime from `Builder`. +- Allow `service` module to be available with only `service` feature enabled. + # 0.1.4 (2024-05-24) - Add `initial_max_send_streams()` to `legacy` client builder diff --git a/Cargo.toml b/Cargo.toml index 0cc6af4..58baf5d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hyper-util" -version = "0.1.4" +version = "0.1.5" description = "hyper utilities" readme = "README.md" homepage = "https://hyper.rs"