chore: Prepare 0.7.2 release (#998)
This commit is contained in:
@@ -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)
|
# [0.7.1](https://github.com/hyperium/tonic/compare/v0.7.0...v0.7.1) (2022-04-04)
|
||||||
|
|
||||||
### Features
|
### Features
|
||||||
|
|||||||
@@ -4,7 +4,7 @@ categories = ["network-programming", "asynchronous"]
|
|||||||
description = """
|
description = """
|
||||||
Codegen module of `tonic` gRPC implementation.
|
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"
|
edition = "2018"
|
||||||
homepage = "https://github.com/hyperium/tonic"
|
homepage = "https://github.com/hyperium/tonic"
|
||||||
keywords = ["rpc", "grpc", "async", "codegen", "protobuf"]
|
keywords = ["rpc", "grpc", "async", "codegen", "protobuf"]
|
||||||
@@ -12,7 +12,7 @@ license = "MIT"
|
|||||||
name = "tonic-build"
|
name = "tonic-build"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
repository = "https://github.com/hyperium/tonic"
|
repository = "https://github.com/hyperium/tonic"
|
||||||
version = "0.7.1"
|
version = "0.7.2"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
prettyplease = {version = "0.1"}
|
prettyplease = {version = "0.1"}
|
||||||
|
|||||||
@@ -62,7 +62,7 @@
|
|||||||
html_logo_url = "https://raw.githubusercontent.com/tokio-rs/website/master/public/img/icons/tonic.svg"
|
html_logo_url = "https://raw.githubusercontent.com/tokio-rs/website/master/public/img/icons/tonic.svg"
|
||||||
)]
|
)]
|
||||||
#![deny(rustdoc::broken_intra_doc_links)]
|
#![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(issue_tracker_base_url = "https://github.com/hyperium/tonic/issues/")]
|
||||||
#![doc(test(no_crate_inject, attr(deny(rust_2018_idioms))))]
|
#![doc(test(no_crate_inject, attr(deny(rust_2018_idioms))))]
|
||||||
#![cfg_attr(docsrs, feature(doc_cfg))]
|
#![cfg_attr(docsrs, feature(doc_cfg))]
|
||||||
|
|||||||
+2
-2
@@ -13,14 +13,14 @@ categories = ["web-programming", "network-programming", "asynchronous"]
|
|||||||
description = """
|
description = """
|
||||||
A gRPC over HTTP/2 implementation focused on high performance, interoperability, and flexibility.
|
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"
|
edition = "2018"
|
||||||
homepage = "https://github.com/hyperium/tonic"
|
homepage = "https://github.com/hyperium/tonic"
|
||||||
keywords = ["rpc", "grpc", "async", "futures", "protobuf"]
|
keywords = ["rpc", "grpc", "async", "futures", "protobuf"]
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
readme = "../README.md"
|
readme = "../README.md"
|
||||||
repository = "https://github.com/hyperium/tonic"
|
repository = "https://github.com/hyperium/tonic"
|
||||||
version = "0.7.1"
|
version = "0.7.2"
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
codegen = ["async-trait"]
|
codegen = ["async-trait"]
|
||||||
|
|||||||
+1
-1
@@ -81,7 +81,7 @@
|
|||||||
#![doc(
|
#![doc(
|
||||||
html_logo_url = "https://raw.githubusercontent.com/tokio-rs/website/master/public/img/icons/tonic.svg"
|
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(issue_tracker_base_url = "https://github.com/hyperium/tonic/issues/")]
|
||||||
#![doc(test(no_crate_inject, attr(deny(rust_2018_idioms))))]
|
#![doc(test(no_crate_inject, attr(deny(rust_2018_idioms))))]
|
||||||
#![cfg_attr(docsrs, feature(doc_cfg))]
|
#![cfg_attr(docsrs, feature(doc_cfg))]
|
||||||
|
|||||||
Reference in New Issue
Block a user