From c734b7904d615b8eaa5a5c1a8aa55d4e9ae56a6c Mon Sep 17 00:00:00 2001 From: Sean McArthur Date: Thu, 10 Feb 2022 12:49:30 -0800 Subject: [PATCH] v0.14.17 --- CHANGELOG.md | 15 +++++++++++++++ Cargo.toml | 2 +- 2 files changed, 16 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 090ecf74..5df9c9e0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,18 @@ +### v0.14.17 (2022-02-10) + + +#### Bug Fixes + +* **client:** avoid panics in uses of `Instant` (#2746) ([dcdd6d10](https://github.com/hyperium/hyper/commit/dcdd6d109069949ee68ba70ece4a2b4f21079479)) + + +#### Features + +* **client:** implement the HTTP/2 extended CONNECT protocol from RFC 8441 (#2682) ([5ec094ca](https://github.com/hyperium/hyper/commit/5ec094caa5c999e6f919a2bc82f5f3b7d40c2d8a)) +* **error:** add `Error::message` (#2737) ([6932896a](https://github.com/hyperium/hyper/commit/6932896a7fca58fe461269461f925da8fd4e8d8a), closes [#2732](https://github.com/hyperium/hyper/issues/2732)) +* **http1:** implement obsolete line folding (#2734) ([1f0c177b](https://github.com/hyperium/hyper/commit/1f0c177b35b14054eb1e5108e75f8bd3ff52813e)) + + ### v0.14.16 (2021-12-09) diff --git a/Cargo.toml b/Cargo.toml index 6e5d9a72..f2ee5efe 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hyper" -version = "0.14.16" +version = "0.14.17" description = "A fast and correct HTTP library." readme = "README.md" homepage = "https://hyper.rs"