From 9d7c3b9e8da4df7fe39d370cd05780a2b745bed3 Mon Sep 17 00:00:00 2001 From: Sean McArthur Date: Wed, 31 Jan 2024 15:14:45 -0500 Subject: [PATCH] v0.1.3 --- CHANGELOG.md | 13 +++++++++++++ Cargo.toml | 3 +-- 2 files changed, 14 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b498f47..084ed3a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,16 @@ +# 0.1.3 (2024-01-31) + +### Added + +- Add `Error::is_connect()` which returns true if error came from client `Connect`. +- Add timer support to `legacy` pool. +- Add support to enable http1/http2 parts of `auto::Builder` individually. + +### Fixed + +- Fix `auto` connection so it can handle requests shorter than the h2 preface. +- Fix `legacy::Client` to no longer error when keep-alive is diabled. + # 0.1.2 (2023-12-20) ### Added diff --git a/Cargo.toml b/Cargo.toml index b2de1e7..610f300 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hyper-util" -version = "0.1.2" +version = "0.1.3" description = "hyper utilities" readme = "README.md" homepage = "https://hyper.rs" @@ -11,7 +11,6 @@ authors = ["Sean McArthur "] keywords = ["http", "hyper", "hyperium"] categories = ["network-programming", "web-programming::http-client", "web-programming::http-server"] edition = "2021" -resolver = "2" [package.metadata.docs.rs] features = ["full"]