This commit is contained in:
Sean McArthur
2018-11-20 12:55:08 -08:00
parent 95446cc338
commit 92a8aba610
3 changed files with 11 additions and 2 deletions

View File

@@ -1,3 +1,12 @@
### v0.12.15 (2018-11-20)
#### Features
* **client:** add client::conn::Builder::executor method ([95446cc3](https://github.com/hyperium/hyper/commit/95446cc338f8055539dd3503c482d649f42a531c))
* **server:** change `NewService` to `MakeService` with connection context ([30870029](https://github.com/hyperium/hyper/commit/30870029b9eb162f566d8dddd007fb6df9cd69af), closes [#1650](https://github.com/hyperium/hyper/issues/1650))
### v0.12.14 (2018-11-07) ### v0.12.14 (2018-11-07)

View File

@@ -1,6 +1,6 @@
[package] [package]
name = "hyper" name = "hyper"
version = "0.12.14" # don't forget to update html_root_url version = "0.12.15" # don't forget to update html_root_url
description = "A fast and correct HTTP library." description = "A fast and correct HTTP library."
readme = "README.md" readme = "README.md"
homepage = "https://hyper.rs" homepage = "https://hyper.rs"

View File

@@ -1,4 +1,4 @@
#![doc(html_root_url = "https://docs.rs/hyper/0.12.14")] #![doc(html_root_url = "https://docs.rs/hyper/0.12.15")]
#![deny(missing_docs)] #![deny(missing_docs)]
#![deny(missing_debug_implementations)] #![deny(missing_debug_implementations)]
#![cfg_attr(test, deny(warnings))] #![cfg_attr(test, deny(warnings))]