diff --git a/CHANGELOG.md b/CHANGELOG.md index ce9c448..0802f72 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,19 @@ +# 0.1.0-alpha.2 (October 7, 2019) + +### Bug Fixes + +* **codec:** Fix buffer decode panic on full ([#43](https://github.com/hyperium/tonic/issues/43)) ([ed3e7e9](https://github.com/hyperium/tonic/commit/ed3e7e9)) +* **codegen:** Fix Empty protobuf type and add unimplemented ([#26](https://github.com/hyperium/tonic/issues/26)) ([2670b34](https://github.com/hyperium/tonic/commit/2670b34)) +* **codegen:** Use wellknown types from `prost-types` ([#49](https://github.com/hyperium/tonic/issues/49)) ([4e1fcec](https://github.com/hyperium/tonic/commit/4e1fcec)) +* **transport:** Attempt to load RSA private keys in rustls ([#39](https://github.com/hyperium/tonic/issues/39)) ([2c5c3a2](https://github.com/hyperium/tonic/commit/2c5c3a2)) +* **transport:** Avoid exit after bad TLS handshake ([#51](https://github.com/hyperium/tonic/issues/51)) ([412a0bd](https://github.com/hyperium/tonic/commit/412a0bd)) + + +### Features + +* **codgen:** Add default implementations for the generated server ([#27](https://github.com/hyperium/tonic/issues/27)) ([4559613](https://github.com/hyperium/tonic/commit/4559613)) +* **transport:** Expose HTTP/2 settings ([#28](https://github.com/hyperium/tonic/issues/28)) ([0218d58](https://github.com/hyperium/tonic/commit/0218d58)) + # 0.1.0-alpha.1 (October 1, 2019) - Initial release diff --git a/tonic-build/Cargo.toml b/tonic-build/Cargo.toml index d048c34..509deea 100644 --- a/tonic-build/Cargo.toml +++ b/tonic-build/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tonic-build" -version = "0.1.0-alpha.1" +version = "0.1.0-alpha.2" authors = ["Lucio Franco "] edition = "2018" license = "MIT" diff --git a/tonic-build/src/lib.rs b/tonic-build/src/lib.rs index 8e1dc81..d1f3d2d 100644 --- a/tonic-build/src/lib.rs +++ b/tonic-build/src/lib.rs @@ -53,7 +53,7 @@ #![doc( html_logo_url = "https://github.com/hyperium/tonic/raw/master/.github/assets/tonic-docs.png" )] -#![doc(html_root_url = "https://docs.rs/tonic/0.1.0-alpha.1")] +#![doc(html_root_url = "https://docs.rs/tonic/0.1.0-alpha.2")] #![doc(issue_tracker_base_url = "https://github.com/hyperium/tonic/issues/")] #![doc(test(no_crate_inject, attr(deny(rust_2018_idioms))))] diff --git a/tonic/Cargo.toml b/tonic/Cargo.toml index be4e2f4..e865b06 100644 --- a/tonic/Cargo.toml +++ b/tonic/Cargo.toml @@ -8,7 +8,7 @@ name = "tonic" # - README.md # - Update CHANGELOG.md. # - Create "v0.1.x" git tag. -version = "0.1.0-alpha.1" +version = "0.1.0-alpha.2" authors = ["Lucio Franco "] edition = "2018" license = "MIT" diff --git a/tonic/src/lib.rs b/tonic/src/lib.rs index 6084a38..f94b90f 100644 --- a/tonic/src/lib.rs +++ b/tonic/src/lib.rs @@ -71,7 +71,7 @@ #![doc( html_logo_url = "https://github.com/hyperium/tonic/raw/master/.github/assets/tonic-docs.png" )] -#![doc(html_root_url = "https://docs.rs/tonic/0.1.0-alpha.1")] +#![doc(html_root_url = "https://docs.rs/tonic/0.1.0-alpha.2")] #![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))]