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"