chore: Prepare 0.9.1 release (#1343)

* Update documentation url in cargo tomls

* Bump versions to 0.9.1

* Update guides

* Add prepare/publish scripts

* Update changelog
This commit is contained in:
Lucio Franco
2023-04-03 14:31:03 +00:00
committed by GitHub
parent 5bcebaf3ca
commit 01cba4992c
17 changed files with 107 additions and 22 deletions
+2 -2
View File
@@ -112,12 +112,12 @@ name = "helloworld-client"
path = "src/client.rs"
[dependencies]
tonic = "0.8"
tonic = "0.9"
prost = "0.11"
tokio = { version = "1.0", features = ["macros", "rt-multi-thread"] }
[build-dependencies]
tonic-build = "0.8"
tonic-build = "0.9"
```
We include `tonic-build` as a useful way to incorporate the generation of our client and server gRPC code into the build process of our application. We will setup this build process now: