From 5fe21f3b24b2d311aae08565850dc1e69d76da09 Mon Sep 17 00:00:00 2001 From: Lucio Franco Date: Sun, 10 Nov 2019 17:40:51 +0100 Subject: [PATCH] chore: Prepare alpha.6 release (#130) --- CHANGELOG.md | 15 ++++++++++++++- tonic-build/Cargo.toml | 2 +- tonic-build/src/lib.rs | 2 +- tonic/Cargo.toml | 2 +- tonic/src/lib.rs | 2 +- 5 files changed, 18 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9da18f5..f576cdb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,17 @@ -# [0.1.0-alpha.5](https://github.com/hyperium/tonic/compare/v0.1.0-alpha.5...v0.1.0-alpha.5) (October 23, 2019) +# [0.1.0-alpha.6](https://github.com/hyperium/tonic/compare/v0.1.0-alpha.5...v0.1.0-alpha.6) (November 10, 2019) + +### Bug Fixes + +* **build:** Prevent duplicated client/server generated code ([#121](https://github.com/hyperium/tonic/issues/121)) ([b02b4b2](https://github.com/hyperium/tonic/commit/b02b4b2)) +* **transport:** Load balance connecting panic ([#128](https://github.com/hyperium/tonic/issues/128)) ([23e7695](https://github.com/hyperium/tonic/commit/23e7695)), closes [#127](https://github.com/hyperium/tonic/issues/127) + + +### Features + +* **transport:** Add system root anchors for TLS ([#114](https://github.com/hyperium/tonic/issues/114)) ([ac0e333](https://github.com/hyperium/tonic/commit/ac0e333)), closes [#101](https://github.com/hyperium/tonic/issues/101) +* **transport:** Enable TCP_NODELAY. ([#120](https://github.com/hyperium/tonic/issues/120)) ([0299509](https://github.com/hyperium/tonic/commit/0299509)) + +# [0.1.0-alpha.5](https://github.com/hyperium/tonic/compare/v0.1.0-alpha.4...v0.1.0-alpha.5) (October 23, 2019) ### Bug Fixes diff --git a/tonic-build/Cargo.toml b/tonic-build/Cargo.toml index 3909d85..ee7c4fc 100644 --- a/tonic-build/Cargo.toml +++ b/tonic-build/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tonic-build" -version = "0.1.0-alpha.5" +version = "0.1.0-alpha.6" authors = ["Lucio Franco "] edition = "2018" license = "MIT" diff --git a/tonic-build/src/lib.rs b/tonic-build/src/lib.rs index 6b9cac5..2494b17 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-build/0.1.0-alpha.5")] +#![doc(html_root_url = "https://docs.rs/tonic-build/0.1.0-alpha.6")] #![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 feaba7a..514cc72 100644 --- a/tonic/Cargo.toml +++ b/tonic/Cargo.toml @@ -8,7 +8,7 @@ name = "tonic" # - README.md # - Update CHANGELOG.md. # - Create "v0.1.x" git tag. -version = "0.1.0-alpha.5" +version = "0.1.0-alpha.6" authors = ["Lucio Franco "] edition = "2018" license = "MIT" diff --git a/tonic/src/lib.rs b/tonic/src/lib.rs index 8f1fdab..975a07f 100644 --- a/tonic/src/lib.rs +++ b/tonic/src/lib.rs @@ -77,7 +77,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.5")] +#![doc(html_root_url = "https://docs.rs/tonic/0.1.0-alpha.6")] #![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))]