Prepare 0.4.1 release (#580)

This commit is contained in:
David Pedersen
2021-03-16 17:39:57 +01:00
committed by GitHub
parent ea56e2e2b8
commit 7889c7ff97
6 changed files with 22 additions and 8 deletions
+14
View File
@@ -1,3 +1,17 @@
# [0.4.1](https://github.com/hyperium/tonic/compare/v0.3.1...v0.4.1) (2021-03-16)
### Features
* feat(reflection): Implement gRPC Reflection Service (#340) ([c54f247](https://github.com/hyperium/tonic/commit/c54f247)), closes [#340](https://github.com/hyperium/tonic/issues/340)
* 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)
* 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)
* 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)
* chore: add FromStr for Endpoint (#558) ([f49d4bd](https://github.com/hyperium/tonic/commit/f49d4bd)), closes [#558](https://github.com/hyperium/tonic/issues/558)
### Bug Fixes
* 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)
# [0.4.0](https://github.com/hyperium/tonic/compare/v0.3.1...v0.4.0) (2021-01-15) # [0.4.0](https://github.com/hyperium/tonic/compare/v0.3.1...v0.4.0) (2021-01-15)
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`. 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`.
+2 -2
View File
@@ -1,10 +1,10 @@
[package] [package]
name = "tonic-build" name = "tonic-build"
version = "0.4.0" version = "0.4.1"
authors = ["Lucio Franco <[email protected]>"] authors = ["Lucio Franco <[email protected]>"]
edition = "2018" edition = "2018"
license = "MIT" license = "MIT"
documentation = "https://docs.rs/tonic-build/0.4.0/tonic_build/" documentation = "https://docs.rs/tonic-build/0.4.1/tonic_build/"
repository = "https://github.com/hyperium/tonic" repository = "https://github.com/hyperium/tonic"
homepage = "https://github.com/hyperium/tonic" homepage = "https://github.com/hyperium/tonic"
description = """ description = """
+1 -1
View File
@@ -67,7 +67,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-build/0.4.0")] #![doc(html_root_url = "https://docs.rs/tonic-build/0.4.1")]
#![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
View File
@@ -2,8 +2,8 @@
name = "tonic-reflection" name = "tonic-reflection"
version = "0.1.0" version = "0.1.0"
authors = [ authors = [
"James Nugent <[email protected]>", "James Nugent <[email protected]>",
"Samani G. Gikandi <[email protected]>" "Samani G. Gikandi <[email protected]>"
] ]
edition = "2018" edition = "2018"
license = "MIT" license = "MIT"
+2 -2
View File
@@ -8,11 +8,11 @@ name = "tonic"
# - README.md # - README.md
# - Update CHANGELOG.md. # - Update CHANGELOG.md.
# - Create "v0.4.x" git tag. # - Create "v0.4.x" git tag.
version = "0.4.0" version = "0.4.1"
authors = ["Lucio Franco <[email protected]>"] authors = ["Lucio Franco <[email protected]>"]
edition = "2018" edition = "2018"
license = "MIT" license = "MIT"
documentation = "https://docs.rs/tonic/0.4.0/tonic/" documentation = "https://docs.rs/tonic/0.4.1/tonic/"
repository = "https://github.com/hyperium/tonic" repository = "https://github.com/hyperium/tonic"
homepage = "https://github.com/hyperium/tonic" homepage = "https://github.com/hyperium/tonic"
description = """ description = """
+1 -1
View File
@@ -71,7 +71,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.4.0")] #![doc(html_root_url = "https://docs.rs/tonic/0.4.1")]
#![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))]