chore: Prepare 0.8.2 release (#1089)
This commit is contained in:
@@ -1,3 +1,19 @@
|
||||
# [0.8.2](https://github.com/hyperium/tonic/compare/v0.8.1...v0.8.2) (2022-09-28)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* **transport:** Bump axum for CVE-2022-3212 ([#1088](https://github.com/hyperium/tonic/issues/1088)) ([cddd992](https://github.com/hyperium/tonic/commit/cddd99266682127a3fa0e5d601f56a6346369814))
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* **tonic:** add `Result<T>` type alias for `std::result::Result<T, tonic::Status>` ([#1085](https://github.com/hyperium/tonic/issues/1085)) ([56ff45d](https://github.com/hyperium/tonic/commit/56ff45d9a36040c429753d0d118ad980fbfe3eb8))
|
||||
* **build:** add `cleanup-markdown` feature flag ([#1086](https://github.com/hyperium/tonic/issues/1086)) ([c1b08df](https://github.com/hyperium/tonic/commit/c1b08dffacb67e13ce7e94a002eee8999ca7c0e5))
|
||||
* **tonic:** impl `Clone` for `Status` using `Arc` ([#1076](https://github.com/hyperium/tonic/issues/1076)) ([ee3d0df](https://github.com/hyperium/tonic/commit/ee3d0dfe7556fc7e996764f650ee3351097e7309))
|
||||
* **transport:** Expose hyper's H2 adaptive window on server ([#1071](https://github.com/hyperium/tonic/issues/1071)) ([919d28b](https://github.com/hyperium/tonic/commit/919d28b2b96c7c803cec131a9e36e80d2b071701))
|
||||
|
||||
|
||||
# [0.8.1](https://github.com/hyperium/tonic/compare/v0.8.0...v0.8.1) (2022-09-07)
|
||||
|
||||
|
||||
|
||||
@@ -4,7 +4,7 @@ categories = ["network-programming", "asynchronous"]
|
||||
description = """
|
||||
Codegen module of `tonic` gRPC implementation.
|
||||
"""
|
||||
documentation = "https://docs.rs/tonic-build/0.7.2/tonic_build/"
|
||||
documentation = "https://docs.rs/tonic-build/0.8.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.8.0"
|
||||
version = "0.8.2"
|
||||
|
||||
[dependencies]
|
||||
prettyplease = { version = "0.1" }
|
||||
|
||||
@@ -70,7 +70,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.8.0")]
|
||||
#![doc(html_root_url = "https://docs.rs/tonic-build/0.8.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))]
|
||||
|
||||
+2
-2
@@ -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.8.1/tonic/"
|
||||
documentation = "https://docs.rs/tonic/0.8.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.8.0"
|
||||
version = "0.8.2"
|
||||
|
||||
[features]
|
||||
codegen = ["async-trait"]
|
||||
|
||||
+1
-1
@@ -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.8.1")]
|
||||
#![doc(html_root_url = "https://docs.rs/tonic/0.8.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))]
|
||||
|
||||
Reference in New Issue
Block a user