From 29bf921849b87a49d6e47399de544f953b983b4f Mon Sep 17 00:00:00 2001 From: Steven Fackler Date: Wed, 7 Nov 2018 11:25:40 -0800 Subject: [PATCH] Release v0.6.2 --- CHANGELOG.md | 9 +++++++++ Cargo.toml | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e28c94d4..0935fe57 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,15 @@ ## [Unreleased] +## [v0.6.2] - 2018-11-07 + +### Added + +* Added ALPN support. If the `h2` protocol is selected during the handshake via ALPN, the connector + will automatically indicate that to Hyper via the `Connected::negotiated_h2` method. The + `HttpsConnector::new` method configures ALPN to support both the `h2` and `http/1.1` protocols. + Code using `HttpsConnector::with_connector` will need to configure ALPN manually. + ## [v0.6.1] - 2018-06-13 ### Changed diff --git a/Cargo.toml b/Cargo.toml index 765c8b24..1966c744 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hyper-openssl" -version = "0.6.1" +version = "0.6.2" authors = ["Steven Fackler "] description = "Hyper TLS support via OpenSSL" license = "MIT/Apache-2.0"