From 77fc74038fe061d044d43ae97ca22329ddb35e0d Mon Sep 17 00:00:00 2001 From: Lucio Franco Date: Wed, 23 Oct 2019 15:09:49 -0400 Subject: [PATCH] chore: Prepare alpha.4 release (#91) * chore: Prepare alpha.4 release * Update changelog --- CHANGELOG.md | 22 ++++++++++++++++++++++ tonic-build/Cargo.toml | 4 ++-- tonic-build/src/lib.rs | 2 +- tonic/Cargo.toml | 4 ++-- tonic/src/lib.rs | 2 +- 5 files changed, 28 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 355683d..cf8c328 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,25 @@ +# [0.1.0-alpha.4](https://github.com/hyperium/tonic/compare/v0.1.0-alpha.3...v0.1.0-alpha.4) (October 23, 2019) + + +### Bug Fixes + +* **build:** Fix service and rpc name conflict ([#92](https://github.com/hyperium/tonic/issues/92)) ([1dbde95](https://github.com/hyperium/tonic/commit/1dbde95)), closes [#89](https://github.com/hyperium/tonic/issues/89) +* **codec:** Properly decode partial DATA frames ([#83](https://github.com/hyperium/tonic/issues/83)) ([9079e0f](https://github.com/hyperium/tonic/commit/9079e0f)) +* **transport:** Rename server tls config method ([#73](https://github.com/hyperium/tonic/issues/73)) ([2a4bdb2](https://github.com/hyperium/tonic/commit/2a4bdb2)) + + +### Features + +* **docs:** Add routeguide tutorial ([#21](https://github.com/hyperium/tonic/issues/21)) ([5d0a795](https://github.com/hyperium/tonic/commit/5d0a795)) +* **transport:** Add support client mTLS ([#77](https://github.com/hyperium/tonic/issues/77)) ([335a373](https://github.com/hyperium/tonic/commit/335a373)) + + +### BREAKING CHANGES + +* **transport:** `rustls_client_config` for the server has been renamed to `rustls_server_config`. +* **client:** Use `Stream` instead of `TrySteam` for client calls ([#61](https://github.com/hyperium/tonic/issues/61)) ([7eda823](https://github.com/hyperium/tonic/commit/7eda823)) + + # [0.1.0-alpha.3](https://github.com/hyperium/tonic/compare/v0.1.0-alpha.2...v0.1.0-alpha.3) (October 9, 2019) diff --git a/tonic-build/Cargo.toml b/tonic-build/Cargo.toml index 8193ae4..16c53fa 100644 --- a/tonic-build/Cargo.toml +++ b/tonic-build/Cargo.toml @@ -1,10 +1,10 @@ [package] name = "tonic-build" -version = "0.1.0-alpha.3" +version = "0.1.0-alpha.4" authors = ["Lucio Franco "] edition = "2018" license = "MIT" -documentation = "https://docs.rs/tonic/0.1.0-alpha.1/tonic/" +documentation = "https://docs.rs/tonic/0.1.0-alpha.4/tonic/" repository = "https://github.com/hyperium/tonic" homepage = "https://github.com/hyperium/tonic" description = """ diff --git a/tonic-build/src/lib.rs b/tonic-build/src/lib.rs index a42ebbd..3fdff53 100644 --- a/tonic-build/src/lib.rs +++ b/tonic-build/src/lib.rs @@ -53,7 +53,7 @@ #![doc( html_logo_url = "https://github.com/hyperium/tonic/raw/master/.github/assets/tonic-docs.png" )] -#![doc(html_root_url = "https://docs.rs/tonic/0.1.0-alpha.3")] +#![doc(html_root_url = "https://docs.rs/tonic/0.1.0-alpha.4")] #![doc(issue_tracker_base_url = "https://github.com/hyperium/tonic/issues/")] #![doc(test(no_crate_inject, attr(deny(rust_2018_idioms))))] diff --git a/tonic/Cargo.toml b/tonic/Cargo.toml index 89c2819..80a230e 100644 --- a/tonic/Cargo.toml +++ b/tonic/Cargo.toml @@ -8,11 +8,11 @@ name = "tonic" # - README.md # - Update CHANGELOG.md. # - Create "v0.1.x" git tag. -version = "0.1.0-alpha.3" +version = "0.1.0-alpha.4" authors = ["Lucio Franco "] edition = "2018" license = "MIT" -documentation = "https://docs.rs/tonic/0.1.0-alpha.1/tonic/" +documentation = "https://docs.rs/tonic/0.1.0-alpha.4/tonic/" repository = "https://github.com/hyperium/tonic" homepage = "https://github.com/hyperium/tonic" description = """ diff --git a/tonic/src/lib.rs b/tonic/src/lib.rs index cca925c..225d158 100644 --- a/tonic/src/lib.rs +++ b/tonic/src/lib.rs @@ -71,7 +71,7 @@ #![doc( html_logo_url = "https://github.com/hyperium/tonic/raw/master/.github/assets/tonic-docs.png" )] -#![doc(html_root_url = "https://docs.rs/tonic/0.1.0-alpha.3")] +#![doc(html_root_url = "https://docs.rs/tonic/0.1.0-alpha.4")] #![doc(issue_tracker_base_url = "https://github.com/hyperium/tonic/issues/")] #![doc(test(no_crate_inject, attr(deny(rust_2018_idioms))))] #![cfg_attr(docsrs, feature(doc_cfg))]