From 1158bd20b30f696d354640856fa6444ba7c651bb Mon Sep 17 00:00:00 2001 From: Sean McArthur Date: Wed, 7 Nov 2018 11:01:47 -0800 Subject: [PATCH] v0.12.14 --- CHANGELOG.md | 13 +++++++++++++ Cargo.toml | 2 +- src/lib.rs | 2 +- 3 files changed, 15 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 14cdd604..8ed41199 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,16 @@ +### v0.12.14 (2018-11-07) + + +#### Bug Fixes + +* **header:** fix panic when parsing header names larger than 64kb ([9245e940](https://github.com/hyperium/hyper/commit/9245e9409aeb5bb3e31b7f7c0e125583d1318465)) + + +#### Features + +* **client:** add ALPN h2 support for client connectors ([976a77a6](https://github.com/hyperium/hyper/commit/976a77a67360a2590699c0b2bb3a4c3ccc0ff1ba)) + + ### v0.12.13 (2018-10-26) diff --git a/Cargo.toml b/Cargo.toml index d7c506d8..50af3ddd 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hyper" -version = "0.12.13" # don't forget to update html_root_url +version = "0.12.14" # 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 5fe8e0fc..d8240eaa 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,4 +1,4 @@ -#![doc(html_root_url = "https://docs.rs/hyper/0.12.13")] +#![doc(html_root_url = "https://docs.rs/hyper/0.12.14")] #![deny(missing_docs)] #![deny(missing_debug_implementations)] #![cfg_attr(test, deny(warnings))]