Skip to content

Commit e87db52

Browse files
authored
chore: Prepare aux crates for release (#955)
1 parent 808c417 commit e87db52

File tree

8 files changed

+12
-11
lines changed

8 files changed

+12
-11
lines changed

tonic-health/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@ categories = ["network-programming", "asynchronous"]
44
description = """
55
Health Checking module of `tonic` gRPC implementation.
66
"""
7-
documentation = "https://docs.rs/tonic-health/0.4.0/tonic-health/"
7+
documentation = "https://docs.rs/tonic-health/0.6.0/tonic-health/"
88
edition = "2018"
99
homepage = "https://github.com/hyperium/tonic"
1010
keywords = ["rpc", "grpc", "async", "healthcheck"]
1111
license = "MIT"
1212
name = "tonic-health"
1313
readme = "README.md"
1414
repository = "https://github.com/hyperium/tonic"
15-
version = "0.5.0"
15+
version = "0.6.0"
1616

1717
[features]
1818
default = ["transport"]

tonic-health/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
html_logo_url = "https://raw.githubusercontent.com/tokio-rs/website/master/public/img/icons/tonic.svg"
1717
)]
1818
#![deny(rustdoc::broken_intra_doc_links)]
19-
#![doc(html_root_url = "https://docs.rs/tonic-health/0.5.0")]
19+
#![doc(html_root_url = "https://docs.rs/tonic-health/0.6.0")]
2020
#![doc(issue_tracker_base_url = "https://github.com/hyperium/tonic/issues/")]
2121
#![doc(test(no_crate_inject, attr(deny(rust_2018_idioms))))]
2222
#![cfg_attr(docsrs, feature(doc_cfg))]

tonic-reflection/Cargo.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,13 @@ Server Reflection module of `tonic` gRPC implementation.
99
"""
1010
edition = "2018"
1111
homepage = "https://github.com/hyperium/tonic"
12+
documentation = "https://docs.rs/tonic-reflection/0.4.0/tonic-reflection/"
1213
keywords = ["rpc", "grpc", "async", "reflection"]
1314
license = "MIT"
1415
name = "tonic-reflection"
1516
readme = "README.md"
1617
repository = "https://github.com/hyperium/tonic"
17-
version = "0.3.0"
18+
version = "0.4.0"
1819

1920
[dependencies]
2021
bytes = "1.0"

tonic-reflection/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
html_logo_url = "https://github.com/hyperium/tonic/raw/master/.github/assets/tonic-docs.png"
1111
)]
1212
#![deny(rustdoc::broken_intra_doc_links)]
13-
#![doc(html_root_url = "https://docs.rs/tonic-reflection/0.3.0")]
13+
#![doc(html_root_url = "https://docs.rs/tonic-reflection/0.4.0")]
1414
#![doc(issue_tracker_base_url = "https://github.com/hyperium/tonic/issues/")]
1515
#![doc(test(no_crate_inject, attr(deny(rust_2018_idioms))))]
1616
#![cfg_attr(docsrs, feature(doc_cfg))]

tonic-types/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@ categories = ["web-programming", "network-programming", "asynchronous"]
44
description = """
55
A collection of useful protobuf types that can be used with `tonic`.
66
"""
7-
documentation = "https://docs.rs/tonic-types/0.4.0/tonic-types/"
7+
documentation = "https://docs.rs/tonic-types/0.5.0/tonic-types/"
88
edition = "2018"
99
homepage = "https://github.com/hyperium/tonic"
1010
keywords = ["rpc", "grpc", "protobuf"]
1111
license = "MIT"
1212
name = "tonic-types"
1313
readme = "../README.md"
1414
repository = "https://github.com/hyperium/tonic"
15-
version = "0.4.0"
15+
version = "0.5.0"
1616

1717
[dependencies]
1818
prost = "0.10"

tonic-types/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
html_logo_url = "https://raw.githubusercontent.com/tokio-rs/website/master/public/img/icons/tonic.svg"
1111
)]
1212
#![deny(rustdoc::broken_intra_doc_links)]
13-
#![doc(html_root_url = "https://docs.rs/tonic-types/0.3.0")]
13+
#![doc(html_root_url = "https://docs.rs/tonic-types/0.5.0")]
1414
#![doc(issue_tracker_base_url = "https://github.com/hyperium/tonic/issues/")]
1515

1616
mod pb {

tonic-web/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@ categories = ["network-programming", "asynchronous"]
44
description = """
55
grpc-web protocol translation for tonic services.
66
"""
7-
documentation = "https://docs.rs/tonic-web/0.2.0/tonic-web/"
7+
documentation = "https://docs.rs/tonic-web/0.3.0/tonic-web/"
88
edition = "2018"
99
homepage = "https://github.com/hyperium/tonic"
1010
keywords = ["rpc", "grpc", "grpc-web"]
1111
license = "MIT"
1212
name = "tonic-web"
1313
readme = "README.md"
1414
repository = "https://github.com/hyperium/tonic"
15-
version = "0.2.0"
15+
version = "0.3.0"
1616

1717
[dependencies]
1818
base64 = "0.13"

tonic-web/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@
8484
rust_2018_idioms,
8585
unreachable_pub
8686
)]
87-
#![doc(html_root_url = "https://docs.rs/tonic-web/0.2.0")]
87+
#![doc(html_root_url = "https://docs.rs/tonic-web/0.3.0")]
8888
#![doc(issue_tracker_base_url = "https://github.com/hyperium/tonic/issues/")]
8989

9090
pub use config::Config;

0 commit comments

Comments
 (0)