Skip to content

Commit 7889c7f

Browse files
authored
Prepare 0.4.1 release (#580)
1 parent ea56e2e commit 7889c7f

File tree

6 files changed

+22
-8
lines changed

6 files changed

+22
-8
lines changed

CHANGELOG.md

+14
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
# [0.4.1](https://github.com/hyperium/tonic/compare/v0.3.1...v0.4.1) (2021-03-16)
2+
3+
### Features
4+
5+
* feat(reflection): Implement gRPC Reflection Service (#340) ([c54f247](https://github.com/hyperium/tonic/commit/c54f247)), closes [#340](https://github.com/hyperium/tonic/issues/340)
6+
* feat(build): Add disable_package_emission option to tonic-build (#556) ([4f5e160](https://github.com/hyperium/tonic/commit/4f5e160)), closes [#556](https://github.com/hyperium/tonic/issues/556)
7+
* feat(build): Support compiling well-known protobuf types (#522) ([61555ff](https://github.com/hyperium/tonic/commit/61555ff)), closes [#522](https://github.com/hyperium/tonic/issues/522)
8+
* feat(build): Use `RUSTFMT` to find `rustfmt` binary (#566) ([ea56e2e](https://github.com/hyperium/tonic/commit/ea56e2e)), closes [#566](https://github.com/hyperium/tonic/issues/566)
9+
* chore: add FromStr for Endpoint (#558) ([f49d4bd](https://github.com/hyperium/tonic/commit/f49d4bd)), closes [#558](https://github.com/hyperium/tonic/issues/558)
10+
11+
### Bug Fixes
12+
13+
* fix: Depend on at least tower 0.4.4 (#554) ([ca3b9a1](https://github.com/hyperium/tonic/commit/ca3b9a1)), closes [#554](https://github.com/hyperium/tonic/issues/554) [#553](https://github.com/hyperium/tonic/issues/553) [#552](https://github.com/hyperium/tonic/issues/552) [#553](https://github.com/hyperium/tonic/issues/553) [#552](https://github.com/hyperium/tonic/issues/552)
14+
115
# [0.4.0](https://github.com/hyperium/tonic/compare/v0.3.1...v0.4.0) (2021-01-15)
216

317
This version brings Tonic inline with Tokio 1.0 and Prost 0.7! This release also includes new versions of `tonic-types`, `tonic-build`, and `tonic-health`.

tonic-build/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
[package]
22
name = "tonic-build"
3-
version = "0.4.0"
3+
version = "0.4.1"
44
authors = ["Lucio Franco <luciofranco14@gmail.com>"]
55
edition = "2018"
66
license = "MIT"
7-
documentation = "https://docs.rs/tonic-build/0.4.0/tonic_build/"
7+
documentation = "https://docs.rs/tonic-build/0.4.1/tonic_build/"
88
repository = "https://github.com/hyperium/tonic"
99
homepage = "https://github.com/hyperium/tonic"
1010
description = """

tonic-build/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@
6767
#![doc(
6868
html_logo_url = "https://raw.githubusercontent.com/tokio-rs/website/master/public/img/icons/tonic.svg"
6969
)]
70-
#![doc(html_root_url = "https://docs.rs/tonic-build/0.4.0")]
70+
#![doc(html_root_url = "https://docs.rs/tonic-build/0.4.1")]
7171
#![doc(issue_tracker_base_url = "https://github.com/hyperium/tonic/issues/")]
7272
#![doc(test(no_crate_inject, attr(deny(rust_2018_idioms))))]
7373
#![cfg_attr(docsrs, feature(doc_cfg))]

tonic-reflection/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
name = "tonic-reflection"
33
version = "0.1.0"
44
authors = [
5-
"James Nugent <james@jen20.com>",
6-
"Samani G. Gikandi <samani@gojulas.com>"
5+
"James Nugent <james@jen20.com>",
6+
"Samani G. Gikandi <samani@gojulas.com>"
77
]
88
edition = "2018"
99
license = "MIT"

tonic/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@ name = "tonic"
88
# - README.md
99
# - Update CHANGELOG.md.
1010
# - Create "v0.4.x" git tag.
11-
version = "0.4.0"
11+
version = "0.4.1"
1212
authors = ["Lucio Franco <luciofranco14@gmail.com>"]
1313
edition = "2018"
1414
license = "MIT"
15-
documentation = "https://docs.rs/tonic/0.4.0/tonic/"
15+
documentation = "https://docs.rs/tonic/0.4.1/tonic/"
1616
repository = "https://github.com/hyperium/tonic"
1717
homepage = "https://github.com/hyperium/tonic"
1818
description = """

tonic/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@
7171
#![doc(
7272
html_logo_url = "https://raw.githubusercontent.com/tokio-rs/website/master/public/img/icons/tonic.svg"
7373
)]
74-
#![doc(html_root_url = "https://docs.rs/tonic/0.4.0")]
74+
#![doc(html_root_url = "https://docs.rs/tonic/0.4.1")]
7575
#![doc(issue_tracker_base_url = "https://github.com/hyperium/tonic/issues/")]
7676
#![doc(test(no_crate_inject, attr(deny(rust_2018_idioms))))]
7777
#![cfg_attr(docsrs, feature(doc_cfg))]

0 commit comments

Comments
 (0)