diff --git a/CHANGELOG.md b/CHANGELOG.md index 12ae8711b..e7c5e81a4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ +# [v0.8.4](https://github.com/hyperium/tonic/compare/v0.8.3...v0.8.4) (2022-11-29) + +This release only contains a release for `tonic-build`. + +### Bug Fixes + +* **build:** Fix CodeGen8uilder typo ([#1165](https://github.com/hyperium/tonic/issues/1165)) ([#1166](https://github.com/hyperium/tonic/issues/1166)) ([c7476ff](https://github.com/hyperium/tonic/commit/c7476fff425b972c7966228fd38a9191e8d2ddc9)) + + # [v0.8.3](https://github.com/hyperium/tonic/compare/v0.8.2...v0.8.3) (2022-11-28) +**note:** this version has been yanked due to a typo in the `CodeGenBuilder` +type. + Included in this release is also the sub-crate major version bumps: * `tonic-health` has been bumped to `0.8.0` diff --git a/tonic-build/Cargo.toml b/tonic-build/Cargo.toml index 4dd1c51f5..5a10bc735 100644 --- a/tonic-build/Cargo.toml +++ b/tonic-build/Cargo.toml @@ -4,7 +4,7 @@ categories = ["network-programming", "asynchronous"] description = """ Codegen module of `tonic` gRPC implementation. """ -documentation = "https://docs.rs/tonic-build/0.8.2/tonic_build/" +documentation = "https://docs.rs/tonic-build/0.8.4/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.3" +version = "0.8.4" [dependencies] prettyplease = { version = "0.1" } diff --git a/tonic-build/src/lib.rs b/tonic-build/src/lib.rs index 9a3fdd0fe..acc3201bd 100644 --- a/tonic-build/src/lib.rs +++ b/tonic-build/src/lib.rs @@ -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.3")] +#![doc(html_root_url = "https://docs.rs/tonic-build/0.8.4")] #![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))]