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
@@ -174,7 +174,7 @@ Edit `Cargo.toml` and add all the dependencies we'll need for this example:
```toml
[dependencies]
tonic = "0.8"
tonic = "0.9"
prost = "0.11"
futures-core = "0.3"
futures-util = "0.3"
@@ -187,7 +187,7 @@ serde_json = "1.0"
rand = "0.7"
[build-dependencies]
tonic-build = "0.8"
tonic-build = "0.9"
```
Create a `build.rs` file at the root of your crate: