From 8fa6daae929b7536b46841f1ecf862bfce79ac1d Mon Sep 17 00:00:00 2001 From: Lucio Franco Date: Tue, 13 Apr 2021 18:20:13 -0400 Subject: [PATCH] chore: Prepare tonic `0.4.2` and health `0.3.1` (#605) --- CHANGELOG.md | 15 +++++++++++++++ tonic-build/Cargo.toml | 2 +- tonic-build/src/lib.rs | 2 +- tonic-health/Cargo.toml | 3 ++- tonic-health/src/lib.rs | 2 +- tonic/Cargo.toml | 4 ++-- tonic/src/lib.rs | 2 +- 7 files changed, 23 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 82ca12f..1017dcf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,18 @@ +# [0.4.2](https://github.com/hyperium/tonic/compare/v0.4.1...v0.4.2) (2021-04-13) + +### Bug Fixes + +* **codec:** Allocate inbound buffer once ([#578](https://github.com/hyperium/tonic/issues/578)) ([1d2754f](https://github.com/hyperium/tonic/commit/1d2754feba6b49bfc813f41e8e8e42ffaf8ab0dd)) +* **reflection:** Depend on correct version of build ([#582](https://github.com/hyperium/tonic/issues/582)) ([db09093](https://github.com/hyperium/tonic/commit/db0909382b8ab1a385c1352feeea663844b7d799)) + + +### Features + +* **health:** Expose proto and client ([#471](https://github.com/hyperium/tonic/issues/471)) ([#602](https://github.com/hyperium/tonic/issues/602)) ([49f6137](https://github.com/hyperium/tonic/commit/49f613767341656cad1cc4883ff0e89b03d378ae)) +* Expose status constructors ([#579](https://github.com/hyperium/tonic/issues/579)) ([0d05aa0](https://github.com/hyperium/tonic/commit/0d05aa0d02bd3037e81c72dcf7fa5168d5a62097)) +* **build:** Add `prostoc_args` ([#577](https://github.com/hyperium/tonic/issues/577)) ([480a794](https://github.com/hyperium/tonic/commit/480a79409c4cb9a1c680e57d0f74ad1d4f18beaa)) + + # [0.4.1](https://github.com/hyperium/tonic/compare/v0.3.1...v0.4.1) (2021-03-16) ### Features diff --git a/tonic-build/Cargo.toml b/tonic-build/Cargo.toml index 006c7af..08af62c 100644 --- a/tonic-build/Cargo.toml +++ b/tonic-build/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tonic-build" -version = "0.4.1" +version = "0.4.2" authors = ["Lucio Franco "] edition = "2018" license = "MIT" diff --git a/tonic-build/src/lib.rs b/tonic-build/src/lib.rs index 6f76b35..715a293 100644 --- a/tonic-build/src/lib.rs +++ b/tonic-build/src/lib.rs @@ -67,7 +67,7 @@ #![doc( html_logo_url = "https://raw.githubusercontent.com/tokio-rs/website/master/public/img/icons/tonic.svg" )] -#![doc(html_root_url = "https://docs.rs/tonic-build/0.4.1")] +#![doc(html_root_url = "https://docs.rs/tonic-build/0.4.2")] #![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))] diff --git a/tonic-health/Cargo.toml b/tonic-health/Cargo.toml index ea6cf27..81007f9 100644 --- a/tonic-health/Cargo.toml +++ b/tonic-health/Cargo.toml @@ -1,11 +1,12 @@ [package] name = "tonic-health" -version = "0.3.0" +version = "0.3.1" authors = ["James Nugent "] edition = "2018" license = "MIT" repository = "https://github.com/hyperium/tonic" homepage = "https://github.com/hyperium/tonic" +documentation = "https://docs.rs/tonic-health/0.3.1/tonic-health/" description = """ Health Checking module of `tonic` gRPC implementation. """ diff --git a/tonic-health/src/lib.rs b/tonic-health/src/lib.rs index 5e26124..cca5b1f 100644 --- a/tonic-health/src/lib.rs +++ b/tonic-health/src/lib.rs @@ -15,7 +15,7 @@ #![doc( html_logo_url = "https://raw.githubusercontent.com/tokio-rs/website/master/public/img/icons/tonic.svg" )] -#![doc(html_root_url = "https://docs.rs/tonic/0.2.0")] +#![doc(html_root_url = "https://docs.rs/tonic-health/0.3.1")] #![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))] diff --git a/tonic/Cargo.toml b/tonic/Cargo.toml index 139d982..c92d511 100644 --- a/tonic/Cargo.toml +++ b/tonic/Cargo.toml @@ -8,11 +8,11 @@ name = "tonic" # - README.md # - Update CHANGELOG.md. # - Create "v0.4.x" git tag. -version = "0.4.1" +version = "0.4.2" authors = ["Lucio Franco "] edition = "2018" license = "MIT" -documentation = "https://docs.rs/tonic/0.4.1/tonic/" +documentation = "https://docs.rs/tonic/0.4.2/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 bb67ea6..26ab2e8 100644 --- a/tonic/src/lib.rs +++ b/tonic/src/lib.rs @@ -71,7 +71,7 @@ #![doc( html_logo_url = "https://raw.githubusercontent.com/tokio-rs/website/master/public/img/icons/tonic.svg" )] -#![doc(html_root_url = "https://docs.rs/tonic/0.4.1")] +#![doc(html_root_url = "https://docs.rs/tonic/0.4.2")] #![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))]