diff --git a/CHANGELOG.md b/CHANGELOG.md index d48d157..fc9a3f9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,15 @@ -# [0.1.0](https://github.com/hyperium/tonic/compare/v0.1.0-beta.1...v0.1.0) (2020-01-14) +# [0.1.1](https://github.com/hyperium/tonic/compare/v0.1.0...v) (2020-01-20) -* rename ServiceName -> NamedService ([#233](https://github.com/hyperium/tonic/issues/233)) ([6ee2ed9](https://github.com/hyperium/tonic/commit/6ee2ed9b4ff30c0517d70908c6348a633dab5b91)) + +### Bug Fixes + +* **build:** Typo with client mod docstring ([#237](https://github.com/hyperium/tonic/issues/237)) ([5fc6762](https://github.com/hyperium/tonic/commit/5fc6762435494d8df023bea8e35a5d20d81f2f3b)) +* **transport:** Add Connected impl for TcpStream ([#245](https://github.com/hyperium/tonic/issues/245)) ([cfdf0af](https://github.com/hyperium/tonic/commit/cfdf0aff549196af0c3b7f6e531dbeacfb6990dc)) +* **transport:** Use Uri host if no domain for tls ([#244](https://github.com/hyperium/tonic/issues/244)) ([6de0b4d](https://github.com/hyperium/tonic/commit/6de0b4d26fd82b4d1303080b0ba8c4db2d4f0fd1)) + + + +# [0.1.0](https://github.com/hyperium/tonic/compare/v0.1.0-beta.1...v0.1.0) (2020-01-14) ### Bug Fixes @@ -9,6 +18,11 @@ * **transport:** Improve `Error` type ([#217](https://github.com/hyperium/tonic/issues/217)) ([ec1f37e](https://github.com/hyperium/tonic/commit/ec1f37e4b46279d20f4fadafa5bf30cfb729fa42)) +### chore + +* rename ServiceName -> NamedService ([#233](https://github.com/hyperium/tonic/issues/233)) ([6ee2ed9](https://github.com/hyperium/tonic/commit/6ee2ed9b4ff30c0517d70908c6348a633dab5b91)) + + ### Features * Add gRPC interceptors ([#232](https://github.com/hyperium/tonic/issues/232)) ([eba7ec7](https://github.com/hyperium/tonic/commit/eba7ec7b32fb96938cbdc3d2dfd91c238afda0dc)) diff --git a/examples/helloworld-tutorial.md b/examples/helloworld-tutorial.md index c5e2bf9..608768b 100644 --- a/examples/helloworld-tutorial.md +++ b/examples/helloworld-tutorial.md @@ -113,7 +113,7 @@ name = "helloworld-client" path = "src/client.rs" [dependencies] -tonic = "0.1.0" +tonic = "0.1" prost = "0.6" tokio = { version = "0.2", features = ["macros"] } diff --git a/examples/routeguide-tutorial.md b/examples/routeguide-tutorial.md index 2b56c81..e641d27 100644 --- a/examples/routeguide-tutorial.md +++ b/examples/routeguide-tutorial.md @@ -180,7 +180,7 @@ Edit `Cargo.toml` and add all the dependencies we'll need for this example: ```toml [dependencies] -tonic = "0.1.0" +tonic = "0.1" prost = "0.6" futures-core = "0.3" futures-util = "0.3" diff --git a/tonic-build/Cargo.toml b/tonic-build/Cargo.toml index 2815176..d94aec9 100644 --- a/tonic-build/Cargo.toml +++ b/tonic-build/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tonic-build" -version = "0.1.0" +version = "0.1.1" authors = ["Lucio Franco "] edition = "2018" license = "MIT" diff --git a/tonic-build/README.md b/tonic-build/README.md index 9920c71..c7a5652 100644 --- a/tonic-build/README.md +++ b/tonic-build/README.md @@ -10,7 +10,6 @@ Required dependencies ```toml [dependencies] -bytes = tonic = prost = diff --git a/tonic-build/src/lib.rs b/tonic-build/src/lib.rs index 07d1e22..8b1ec88 100644 --- a/tonic-build/src/lib.rs +++ b/tonic-build/src/lib.rs @@ -11,7 +11,6 @@ //! //! ```toml //! [dependencies] -//! bytes = //! tonic = //! prost = //! diff --git a/tonic/Cargo.toml b/tonic/Cargo.toml index dc1438f..694897a 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" +version = "0.1.1" authors = ["Lucio Franco "] edition = "2018" license = "MIT"