chore: Prepare 0.8 release (#1044)

This commit is contained in:
Lucio Franco
2022-07-29 16:45:57 -04:00
parent 2a7c610011
commit ec359ba35f
29 changed files with 84 additions and 55 deletions
+3 -3
View File
@@ -4,7 +4,7 @@ categories = ["network-programming", "asynchronous"]
description = """
grpc-web protocol translation for tonic services.
"""
documentation = "https://docs.rs/tonic-web/0.3.0/tonic-web/"
documentation = "https://docs.rs/tonic-web/0.4.0/tonic-web/"
edition = "2018"
homepage = "https://github.com/hyperium/tonic"
keywords = ["rpc", "grpc", "grpc-web"]
@@ -12,7 +12,7 @@ license = "MIT"
name = "tonic-web"
readme = "README.md"
repository = "https://github.com/hyperium/tonic"
version = "0.3.0"
version = "0.4.0"
[dependencies]
base64 = "0.13"
@@ -22,7 +22,7 @@ http = "0.2"
http-body = "0.4"
hyper = "0.14"
pin-project = "1"
tonic = {version = "0.7", path = "../tonic", default-features = false, features = ["transport"]}
tonic = {version = "0.8", path = "../tonic", default-features = false, features = ["transport"]}
tower-service = "0.3"
tracing = "0.1"
+1 -1
View File
@@ -84,7 +84,7 @@
rust_2018_idioms,
unreachable_pub
)]
#![doc(html_root_url = "https://docs.rs/tonic-web/0.3.0")]
#![doc(html_root_url = "https://docs.rs/tonic-web/0.4.0")]
#![doc(issue_tracker_base_url = "https://github.com/hyperium/tonic/issues/")]
pub use config::Config;
+1 -1
View File
@@ -10,7 +10,7 @@ license = "MIT"
base64 = "0.13"
bytes = "1.0"
hyper = "0.14"
prost = "0.10"
prost = "0.11"
tokio = { version = "1", features = ["macros", "rt", "net"] }
tokio-stream = { version = "0.1", features = ["net"] }
tonic = { path = "../../../tonic" }