From 99fdc98d414dd891e856b0da4e1290ccff43f8ff Mon Sep 17 00:00:00 2001 From: David Pedersen Date: Tue, 13 Jul 2021 20:17:58 +0200 Subject: [PATCH] chore: Prepare tonic-build v0.5.1 (#720) --- CHANGELOG.md | 7 +++++++ tonic-build/Cargo.toml | 4 ++-- tonic-build/src/lib.rs | 2 +- 3 files changed, 10 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2ee3fe7c7..0399598ae 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +# [0.5.1](https://github.com/hyperium/tonic/compare/v0.4.3...v0.5.0) (2021-07-12) + +### Bug Fixes + +* **build:** remove unnecessary `Debug` constraint for client streams ([#719](https://github.com/hyperium/tonic/issues/719)) ([167e8cb](https://github.com/hyperium/tonic/commit/167e8cb)), closes [#718](https://github.com/hyperium/tonic/issues/718) +* **build:** allow services to be named `Service` ([#709](https://github.com/hyperium/tonic/issues/709)) ([380d81d](https://github.com/hyperium/tonic/commit/380d81d)), closes [#676](https://github.com/hyperium/tonic/issues/676) + # [0.5.0](https://github.com/hyperium/tonic/compare/v0.4.3...v0.5.0) (2021-07-08) This release includes a new crate `tonic-web` which is versioned at `0.1` and supports accepting `grpc-web`! diff --git a/tonic-build/Cargo.toml b/tonic-build/Cargo.toml index eb85d42bd..b4d066e6c 100644 --- a/tonic-build/Cargo.toml +++ b/tonic-build/Cargo.toml @@ -1,10 +1,10 @@ [package] name = "tonic-build" -version = "0.5.0" +version = "0.5.1" authors = ["Lucio Franco "] edition = "2018" license = "MIT" -documentation = "https://docs.rs/tonic-build/0.5.0/tonic_build/" +documentation = "https://docs.rs/tonic-build/0.5.1/tonic_build/" 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 8eafdf295..1c3d0b76f 100644 --- a/tonic-build/src/lib.rs +++ b/tonic-build/src/lib.rs @@ -68,7 +68,7 @@ html_logo_url = "https://raw.githubusercontent.com/tokio-rs/website/master/public/img/icons/tonic.svg" )] #![deny(broken_intra_doc_links)] -#![doc(html_root_url = "https://docs.rs/tonic-build/0.5.0")] +#![doc(html_root_url = "https://docs.rs/tonic-build/0.5.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))]