Skip to content

Commit 3718895

Browse files
authored
*: bump 0.7.1 (#503)
Signed-off-by: Xintao <[email protected]>
1 parent aef8a77 commit 3718895

File tree

5 files changed

+10
-5
lines changed

5 files changed

+10
-5
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
# 0.7.1 - 2020-12-18
2+
3+
- Allow CXX environment variable to override g++ for musl build (#500)
4+
- Add user-defined checker for server side (#502)
5+
16
# 0.7.0 - 2020-11-02
27

38
- Add blocking callback to `EnvBuilder` (#474)

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "grpcio"
3-
version = "0.7.0"
3+
version = "0.7.1"
44
edition = "2018"
55
authors = ["The TiKV Project Developers"]
66
license = "Apache-2.0"

grpc-sys/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "grpcio-sys"
3-
version = "0.7.0"
3+
version = "0.7.1"
44
authors = ["The TiKV Project Developers"]
55
license = "Apache-2.0"
66
keywords = ["grpc", "bindings"]

proto/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "grpcio-proto"
3-
version = "0.6.0"
3+
version = "0.7.0"
44
edition = "2018"
55
authors = ["The TiKV Project Developers"]
66
license = "Apache-2.0"
@@ -19,7 +19,7 @@ prost-codec = ["prost-derive", "bytes", "lazy_static", "grpcio/prost-codec", "pr
1919

2020
[dependencies]
2121
futures = "0.3"
22-
grpcio = { path = "..", features = ["secure"], version = "0.7.0", default-features = false }
22+
grpcio = { path = "..", features = ["secure"], version = "0.7.1", default-features = false }
2323
bytes = { version = "0.5", optional = true }
2424
prost = { version = "0.6", optional = true }
2525
prost-derive = { version = "0.6", optional = true }

tests-and-examples/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ grpcio = { path = "..", version = "0.7", default-features = false, features = ["
2525
serde_json = "1.0"
2626
serde = "1.0"
2727
serde_derive = "1.0"
28-
grpcio-proto = { path = "../proto", version = "0.6.0", default-features = false }
28+
grpcio-proto = { path = "../proto", version = "0.7.0", default-features = false }
2929
rand = "0.7"
3030
slog = "2.0"
3131
slog-async = "2.1"

0 commit comments

Comments
 (0)