From fe71d118ba1e9fc9cff84a89663e7e13ed1121c8 Mon Sep 17 00:00:00 2001 From: Sean McArthur Date: Tue, 2 Dec 2025 14:39:43 -0500 Subject: [PATCH] v0.1.19 --- CHANGELOG.md | 8 ++++++++ Cargo.toml | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 18cebafd..9965bd6c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +# 0.1.19 (2025-12-03) + +- Add `client::pool` module for composable pools. Enable with the `client-pool` feature. +- Add `pool::singleton` for sharing a single cloneable connection. +- Add `pool::cache` for caching a list of connections. +- Add `pool::negotiate` for combining two pools with upgrade and fallback negotiation. +- Add `pool::map` for customizable mapping of keys and connections. + # 0.1.18 (2025-11-13) - Fix `rt::TokioTimer` to support Tokio's paused time. diff --git a/Cargo.toml b/Cargo.toml index 7bf208df..d13bf7e8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hyper-util" -version = "0.1.18" +version = "0.1.19" description = "hyper utilities" readme = "README.md" homepage = "https://hyper.rs"