From 195e31241a008b4b8953a8ef8ce5a18e53eb9883 Mon Sep 17 00:00:00 2001 From: Sean McArthur Date: Tue, 28 May 2024 09:10:53 -0400 Subject: [PATCH] v0.1.5 --- CHANGELOG.md | 6 ++++++ Cargo.toml | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) 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"