This commit is contained in:
Sean McArthur
2018-11-07 11:01:47 -08:00
parent 9245e9409a
commit 1158bd20b3
3 changed files with 15 additions and 2 deletions

View File

@@ -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)

View File

@@ -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"

View File

@@ -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))]