chore: Prepare 0.1.1 release (#246)

* chore: Prepare 0.1.1 release

* add missing pr
This commit is contained in:
Lucio Franco
2020-01-20 11:53:45 -05:00
committed by GitHub
parent cfdf0aff54
commit 66ac4c4049
7 changed files with 20 additions and 8 deletions
+16 -2
View File
@@ -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 ### 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)) * **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 ### Features
* Add gRPC interceptors ([#232](https://github.com/hyperium/tonic/issues/232)) ([eba7ec7](https://github.com/hyperium/tonic/commit/eba7ec7b32fb96938cbdc3d2dfd91c238afda0dc)) * Add gRPC interceptors ([#232](https://github.com/hyperium/tonic/issues/232)) ([eba7ec7](https://github.com/hyperium/tonic/commit/eba7ec7b32fb96938cbdc3d2dfd91c238afda0dc))
+1 -1
View File
@@ -113,7 +113,7 @@ name = "helloworld-client"
path = "src/client.rs" path = "src/client.rs"
[dependencies] [dependencies]
tonic = "0.1.0" tonic = "0.1"
prost = "0.6" prost = "0.6"
tokio = { version = "0.2", features = ["macros"] } tokio = { version = "0.2", features = ["macros"] }
+1 -1
View File
@@ -180,7 +180,7 @@ Edit `Cargo.toml` and add all the dependencies we'll need for this example:
```toml ```toml
[dependencies] [dependencies]
tonic = "0.1.0" tonic = "0.1"
prost = "0.6" prost = "0.6"
futures-core = "0.3" futures-core = "0.3"
futures-util = "0.3" futures-util = "0.3"
+1 -1
View File
@@ -1,6 +1,6 @@
[package] [package]
name = "tonic-build" name = "tonic-build"
version = "0.1.0" version = "0.1.1"
authors = ["Lucio Franco <[email protected]>"] authors = ["Lucio Franco <[email protected]>"]
edition = "2018" edition = "2018"
license = "MIT" license = "MIT"
-1
View File
@@ -10,7 +10,6 @@ Required dependencies
```toml ```toml
[dependencies] [dependencies]
bytes = <bytes-version>
tonic = <tonic-version> tonic = <tonic-version>
prost = <prost-version> prost = <prost-version>
-1
View File
@@ -11,7 +11,6 @@
//! //!
//! ```toml //! ```toml
//! [dependencies] //! [dependencies]
//! bytes = <bytes-version>
//! tonic = <tonic-version> //! tonic = <tonic-version>
//! prost = <prost-version> //! prost = <prost-version>
//! //!
+1 -1
View File
@@ -8,7 +8,7 @@ name = "tonic"
# - README.md # - README.md
# - Update CHANGELOG.md. # - Update CHANGELOG.md.
# - Create "v0.1.x" git tag. # - Create "v0.1.x" git tag.
version = "0.1.0" version = "0.1.1"
authors = ["Lucio Franco <[email protected]>"] authors = ["Lucio Franco <[email protected]>"]
edition = "2018" edition = "2018"
license = "MIT" license = "MIT"