From 4216b2de705f853d566ce185cae01ca99c63c9a1 Mon Sep 17 00:00:00 2001 From: Sean McArthur Date: Mon, 13 Jul 2020 17:03:48 -0700 Subject: [PATCH] v0.13.7 --- CHANGELOG.md | 15 +++++++++++++++ Cargo.toml | 2 +- src/lib.rs | 2 +- 3 files changed, 17 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bd8a8dd7..db3feefb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,18 @@ +### v0.13.7 (2020-07-13) + + +#### Bug Fixes + +* **client:** don't panic in DNS resolution when task cancelled (#2229) ([0d0d3635](https://github.com/hyperium/hyper/commit/0d0d3635476ba22e5a2b39b0e4b243f57f1f36d2)) + + +#### Features + +* **client:** impl tower_service::Service for &Client (#2089) ([77c3b5bc](https://github.com/hyperium/hyper/commit/77c3b5bc0c0d58ecd9f3c004287f65b8a94cc429)) +* **http2:** configure HTTP/2 frame size in the high-level builders too (#2214) ([2354a7ee](https://github.com/hyperium/hyper/commit/2354a7eec352b1f72cd8989d29d73dff211403a1)) +* **lib:** Move from `log` to `tracing` in a backwards-compatible way (#2204) ([9832aef9](https://github.com/hyperium/hyper/commit/9832aef9eeaeff8979354d5de04b8706ff79a233)) + + ### v0.13.6 (2020-05-29) diff --git a/Cargo.toml b/Cargo.toml index 98264a76..21f95645 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hyper" -version = "0.13.6" # don't forget to update html_root_url +version = "0.13.7" # don't forget to update html_root_url description = "A fast and correct HTTP library." readme = "README.md" homepage = "https://hyper.rs" diff --git a/src/lib.rs b/src/lib.rs index 03d5cf3f..576455bc 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,4 +1,4 @@ -#![doc(html_root_url = "https://docs.rs/hyper/0.13.6")] +#![doc(html_root_url = "https://docs.rs/hyper/0.13.7")] #![deny(missing_docs)] #![deny(missing_debug_implementations)] #![cfg_attr(test, deny(rust_2018_idioms))]