Skip to content

Commit e78a2d8

Browse files
authored
chore: Prepare 0.6.2 (#860)
- Contains the revert to [rust 2018](#847). - Bumps both tonic and tonic-build. - tonic-build goes from 0.6.0 to 0.6.2 since there was no 0.6.1. I believe we want tonic and tonic-build versions to follow each other.
1 parent 5a88e11 commit e78a2d8

File tree

5 files changed

+14
-6
lines changed

5 files changed

+14
-6
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
# [0.6.2](https://github.com/hyperium/tonic/compare/v0.6.1...v0.6.2) (2021-12-07)
2+
3+
4+
### Bug Fixes
5+
6+
* **tonic:** revert to 2018 edition ([#843](https://github.com/hyperium/tonic/issues/843)) ([101f2f7](https://github.com/hyperium/tonic/commit/101f2f76d4a62757cac8ca209b1eb6b57094d524))
7+
8+
19
# [0.6.1](https://github.com/hyperium/tonic/compare/v0.6.0...v0.6.1) (2021-10-27)
210

311

tonic-build/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
Codegen module of `tonic` gRPC implementation.
66
"""
7-
documentation = "https://docs.rs/tonic-build/0.6.0/tonic_build/"
7+
documentation = "https://docs.rs/tonic-build/0.6.2/tonic_build/"
88
edition = "2018"
99
homepage = "https://github.com/hyperium/tonic"
1010
keywords = ["rpc", "grpc", "async", "codegen", "protobuf"]
1111
license = "MIT"
1212
name = "tonic-build"
1313
readme = "README.md"
1414
repository = "https://github.com/hyperium/tonic"
15-
version = "0.6.0"
15+
version = "0.6.2"
1616

1717
[dependencies]
1818
proc-macro2 = "1.0"

tonic-build/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@
6868
html_logo_url = "https://raw.githubusercontent.com/tokio-rs/website/master/public/img/icons/tonic.svg"
6969
)]
7070
#![deny(rustdoc::broken_intra_doc_links)]
71-
#![doc(html_root_url = "https://docs.rs/tonic-build/0.6.0")]
71+
#![doc(html_root_url = "https://docs.rs/tonic-build/0.6.2")]
7272
#![doc(issue_tracker_base_url = "https://github.com/hyperium/tonic/issues/")]
7373
#![doc(test(no_crate_inject, attr(deny(rust_2018_idioms))))]
7474
#![cfg_attr(docsrs, feature(doc_cfg))]

tonic/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,14 @@ categories = ["web-programming", "network-programming", "asynchronous"]
1313
description = """
1414
A gRPC over HTTP/2 implementation focused on high performance, interoperability, and flexibility.
1515
"""
16-
documentation = "https://docs.rs/tonic/0.6.1/tonic/"
16+
documentation = "https://docs.rs/tonic/0.6.2/tonic/"
1717
edition = "2018"
1818
homepage = "https://github.com/hyperium/tonic"
1919
keywords = ["rpc", "grpc", "async", "futures", "protobuf"]
2020
license = "MIT"
2121
readme = "../README.md"
2222
repository = "https://github.com/hyperium/tonic"
23-
version = "0.6.1"
23+
version = "0.6.2"
2424

2525
[features]
2626
codegen = ["async-trait"]

tonic/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@
7979
#![doc(
8080
html_logo_url = "https://raw.githubusercontent.com/tokio-rs/website/master/public/img/icons/tonic.svg"
8181
)]
82-
#![doc(html_root_url = "https://docs.rs/tonic/0.6.1")]
82+
#![doc(html_root_url = "https://docs.rs/tonic/0.6.2")]
8383
#![doc(issue_tracker_base_url = "https://github.com/hyperium/tonic/issues/")]
8484
#![doc(test(no_crate_inject, attr(deny(rust_2018_idioms))))]
8585
#![cfg_attr(docsrs, feature(doc_cfg))]

0 commit comments

Comments
 (0)