From e5118d7eea9414b12bc4ad53e5f0fdecad8aa3f1 Mon Sep 17 00:00:00 2001 From: Sean McArthur Date: Mon, 4 Jun 2018 17:10:29 -0700 Subject: [PATCH] v0.12.1 --- CHANGELOG.md | 17 +++++++++++++++++ Cargo.toml | 2 +- src/lib.rs | 2 +- 3 files changed, 19 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f34e581d..a1e7ffc7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,20 @@ +### v0.12.1 (2018-06-04) + + +#### Bug Fixes + +* **server:** add upgrading process to `poll_without_shutdown()` (#1530) ([c6e90b7b](https://github.com/hyperium/hyper/commit/c6e90b7b6509276c744b531f8b1f7b043059c4ec)) + + +#### Features + +* **client:** implement `Clone` for `Destination` ([15188b7c](https://github.com/hyperium/hyper/commit/15188b7c7fc6774301a16923127df596486cc913)) +* **server:** + * add `http1_writev` config option for servers ([810435f1](https://github.com/hyperium/hyper/commit/810435f1469eb028c6a819368d63edb54d6c341c), closes [#1527](https://github.com/hyperium/hyper/issues/1527)) + * add `http1_only` configuration ([14d9246d](https://github.com/hyperium/hyper/commit/14d9246de2e97908c915caf254a37fd62edb25d3), closes [#1512](https://github.com/hyperium/hyper/issues/1512)) + * add `try_into_parts()` to `conn::Connection` (#1531) ([c615a324](https://github.com/hyperium/hyper/commit/c615a3242f2518bc8acf05116ebe87ea98773c28)) + + ## v0.12.0 (2018-06-01) #### Features diff --git a/Cargo.toml b/Cargo.toml index cd4a5d82..dac53311 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "hyper" -version = "0.12.0" # don't forget to update html_root_url +version = "0.12.1" # 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 87ec5b3d..968a1f77 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,4 +1,4 @@ -#![doc(html_root_url = "https://docs.rs/hyper/0.12.0")] +#![doc(html_root_url = "https://docs.rs/hyper/0.12.1")] #![deny(missing_docs)] #![deny(warnings)] #![deny(missing_debug_implementations)]