Skip to content

Commit 5723681

Browse files
authored
chore: Prepare 0.8.1 release (#1072)
1 parent 919d28b commit 5723681

File tree

5 files changed

+17
-7
lines changed

5 files changed

+17
-7
lines changed

CHANGELOG.md

+12-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,14 @@
1-
# [v0.8.0](https://github.com/hyperium/tonic/compare/v0.7.2...v0.8.0) (2022-07-29)
1+
# [0.8.1](https://github.com/hyperium/tonic/compare/v0.8.0...v0.8.1) (2022-09-07)
2+
3+
4+
### Features
5+
6+
* **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))
7+
* Reduce the amount of monomorphized code.
8+
* Expose `Extensions::into_http` and `Status::from_error`.
9+
* **health:** Remove `build.rs` and commit generated code.
10+
11+
# [0.8.0](https://github.com/hyperium/tonic/compare/v0.7.2...v0.8.0) (2022-07-29)
212

313

414
### Features
@@ -16,7 +26,7 @@
1626
* **tonic** Remove codegen depedency on `compression` feature.
1727
* **tonic** Remove `compression` feature in favor of `gzip` feature.
1828

19-
# [v0.7.2](https://github.com/hyperium/tonic/compare/v0.7.1...v0.7.2) (2022-05-04)
29+
# [0.7.2](https://github.com/hyperium/tonic/compare/v0.7.1...v0.7.2) (2022-05-04)
2030

2131

2232
### Bug Fixes

tonic-health/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ license = "MIT"
1212
name = "tonic-health"
1313
readme = "README.md"
1414
repository = "https://github.com/hyperium/tonic"
15-
version = "0.7.0"
15+
version = "0.7.1"
1616

1717
[features]
1818
default = ["transport"]

tonic-health/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
html_logo_url = "https://raw.githubusercontent.com/tokio-rs/website/master/public/img/icons/tonic.svg"
1717
)]
1818
#![deny(rustdoc::broken_intra_doc_links)]
19-
#![doc(html_root_url = "https://docs.rs/tonic-health/0.6.0")]
19+
#![doc(html_root_url = "https://docs.rs/tonic-health/0.7.1")]
2020
#![doc(issue_tracker_base_url = "https://github.com/hyperium/tonic/issues/")]
2121
#![doc(test(no_crate_inject, attr(deny(rust_2018_idioms))))]
2222
#![cfg_attr(docsrs, feature(doc_cfg))]

tonic/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@ name = "tonic"
77
# - Cargo.toml
88
# - README.md
99
# - Update CHANGELOG.md.
10-
# - Create "v0.7.x" git tag.
10+
# - Create "v0.8.x" git tag.
1111
authors = ["Lucio Franco <[email protected]>"]
1212
categories = ["web-programming", "network-programming", "asynchronous"]
1313
description = """
1414
A gRPC over HTTP/2 implementation focused on high performance, interoperability, and flexibility.
1515
"""
16-
documentation = "https://docs.rs/tonic/0.8.0/tonic/"
16+
documentation = "https://docs.rs/tonic/0.8.1/tonic/"
1717
edition = "2018"
1818
homepage = "https://github.com/hyperium/tonic"
1919
keywords = ["rpc", "grpc", "async", "futures", "protobuf"]

tonic/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@
8181
#![doc(
8282
html_logo_url = "https://raw.githubusercontent.com/tokio-rs/website/master/public/img/icons/tonic.svg"
8383
)]
84-
#![doc(html_root_url = "https://docs.rs/tonic/0.8.0")]
84+
#![doc(html_root_url = "https://docs.rs/tonic/0.8.1")]
8585
#![doc(issue_tracker_base_url = "https://github.com/hyperium/tonic/issues/")]
8686
#![doc(test(no_crate_inject, attr(deny(rust_2018_idioms))))]
8787
#![cfg_attr(docsrs, feature(doc_cfg))]

0 commit comments

Comments
 (0)