diff --git a/CHANGELOG.md b/CHANGELOG.md index 0cce75bd1..f6e6ad448 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,14 @@ -# [v0.8.0](https://github.com/hyperium/tonic/compare/v0.7.2...v0.8.0) (2022-07-29) +# [0.8.1](https://github.com/hyperium/tonic/compare/v0.8.0...v0.8.1) (2022-09-07) + + +### Features + +* **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)) +* Reduce the amount of monomorphized code. +* Expose `Extensions::into_http` and `Status::from_error`. +* **health:** Remove `build.rs` and commit generated code. + +# [0.8.0](https://github.com/hyperium/tonic/compare/v0.7.2...v0.8.0) (2022-07-29) ### Features @@ -16,7 +26,7 @@ * **tonic** Remove codegen depedency on `compression` feature. * **tonic** Remove `compression` feature in favor of `gzip` feature. -# [v0.7.2](https://github.com/hyperium/tonic/compare/v0.7.1...v0.7.2) (2022-05-04) +# [0.7.2](https://github.com/hyperium/tonic/compare/v0.7.1...v0.7.2) (2022-05-04) ### Bug Fixes diff --git a/tonic-health/Cargo.toml b/tonic-health/Cargo.toml index c3bc5236a..b1dcb44b8 100644 --- a/tonic-health/Cargo.toml +++ b/tonic-health/Cargo.toml @@ -12,7 +12,7 @@ license = "MIT" name = "tonic-health" readme = "README.md" repository = "https://github.com/hyperium/tonic" -version = "0.7.0" +version = "0.7.1" [features] default = ["transport"] diff --git a/tonic-health/src/lib.rs b/tonic-health/src/lib.rs index f29dc340c..9a51b50a1 100644 --- a/tonic-health/src/lib.rs +++ b/tonic-health/src/lib.rs @@ -16,7 +16,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-health/0.6.0")] +#![doc(html_root_url = "https://docs.rs/tonic-health/0.7.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 8c1b6e70a..ac2602e58 100644 --- a/tonic/Cargo.toml +++ b/tonic/Cargo.toml @@ -7,13 +7,13 @@ name = "tonic" # - Cargo.toml # - README.md # - Update CHANGELOG.md. -# - Create "v0.7.x" git tag. +# - Create "v0.8.x" git tag. authors = ["Lucio Franco "] 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.0/tonic/" +documentation = "https://docs.rs/tonic/0.8.1/tonic/" edition = "2018" homepage = "https://github.com/hyperium/tonic" keywords = ["rpc", "grpc", "async", "futures", "protobuf"] diff --git a/tonic/src/lib.rs b/tonic/src/lib.rs index 69e2bc190..f126ada16 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.8.0")] +#![doc(html_root_url = "https://docs.rs/tonic/0.8.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))]