From 1b0b525115b2769df7cf6df0048b5daa2bedc1ce Mon Sep 17 00:00:00 2001 From: Lucio Franco Date: Thu, 5 May 2022 10:19:30 -0400 Subject: [PATCH] chore: Prepare `0.7.2` release (#998) --- CHANGELOG.md | 16 ++++++++++++++++ tonic-build/Cargo.toml | 4 ++-- tonic-build/src/lib.rs | 2 +- tonic/Cargo.toml | 4 ++-- tonic/src/lib.rs | 2 +- 5 files changed, 22 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c273627..d5bb220 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,19 @@ +# [v0.7.2](https://github.com/hyperium/tonic/compare/v0.7.1...v0.7.2) (2022-05-04) + + +### Bug Fixes + +* **build:** Reduce `Default` bound requirement ([#974](https://github.com/hyperium/tonic/issues/974)) ([4533a6e](https://github.com/hyperium/tonic/commit/4533a6e20eb889f8f13446c0edf39613fa4fe9f6)) +* don't enable default features in tower ([#972](https://github.com/hyperium/tonic/issues/972)) ([b4f9634](https://github.com/hyperium/tonic/commit/b4f96343afe6106db80f41f49e576a687bfcd633)) +* **transport:** Emit `HttpsUriWithoutTlsSupport` only with tls feature enabled ([#996](https://github.com/hyperium/tonic/issues/996)) ([1dd5ad2](https://github.com/hyperium/tonic/commit/1dd5ad2b07810fc6eb5015c152ec737b5f0ca39c)) + + +### Features + +* Add TryFrom implementations for MetadataValue ([#990](https://github.com/hyperium/tonic/issues/990)) ([edc5a0d](https://github.com/hyperium/tonic/commit/edc5a0d88d4a392effe065dfcc1c005b6bb55b5d)) + + + # [0.7.1](https://github.com/hyperium/tonic/compare/v0.7.0...v0.7.1) (2022-04-04) ### Features diff --git a/tonic-build/Cargo.toml b/tonic-build/Cargo.toml index f4521de..76198ab 100644 --- a/tonic-build/Cargo.toml +++ b/tonic-build/Cargo.toml @@ -4,7 +4,7 @@ categories = ["network-programming", "asynchronous"] description = """ Codegen module of `tonic` gRPC implementation. """ -documentation = "https://docs.rs/tonic-build/0.7.1/tonic_build/" +documentation = "https://docs.rs/tonic-build/0.7.2/tonic_build/" edition = "2018" homepage = "https://github.com/hyperium/tonic" keywords = ["rpc", "grpc", "async", "codegen", "protobuf"] @@ -12,7 +12,7 @@ license = "MIT" name = "tonic-build" readme = "README.md" repository = "https://github.com/hyperium/tonic" -version = "0.7.1" +version = "0.7.2" [dependencies] prettyplease = {version = "0.1"} diff --git a/tonic-build/src/lib.rs b/tonic-build/src/lib.rs index 25cc8a5..606834b 100644 --- a/tonic-build/src/lib.rs +++ b/tonic-build/src/lib.rs @@ -62,7 +62,7 @@ html_logo_url = "https://raw.githubusercontent.com/tokio-rs/website/master/public/img/icons/tonic.svg" )] #![deny(rustdoc::broken_intra_doc_links)] -#![doc(html_root_url = "https://docs.rs/tonic-build/0.7.1")] +#![doc(html_root_url = "https://docs.rs/tonic-build/0.7.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/Cargo.toml b/tonic/Cargo.toml index 91fc8c2..f101c71 100644 --- a/tonic/Cargo.toml +++ b/tonic/Cargo.toml @@ -13,14 +13,14 @@ categories = ["web-programming", "network-programming", "asynchronous"] description = """ A gRPC over HTTP/2 implementation focused on high performance, interoperability, and flexibility. """ -documentation = "https://docs.rs/tonic/0.7.1/tonic/" +documentation = "https://docs.rs/tonic/0.7.2/tonic/" edition = "2018" homepage = "https://github.com/hyperium/tonic" keywords = ["rpc", "grpc", "async", "futures", "protobuf"] license = "MIT" readme = "../README.md" repository = "https://github.com/hyperium/tonic" -version = "0.7.1" +version = "0.7.2" [features] codegen = ["async-trait"] diff --git a/tonic/src/lib.rs b/tonic/src/lib.rs index 603f77b..23ae149 100644 --- a/tonic/src/lib.rs +++ b/tonic/src/lib.rs @@ -81,7 +81,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.7.1")] +#![doc(html_root_url = "https://docs.rs/tonic/0.7.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))]