Skip to content

Commit 4112a22

Browse files
authored
*: bump 0.7.0 (tikv#486)
Signed-off-by: Xintao <[email protected]>
1 parent bb02598 commit 4112a22

File tree

6 files changed

+18
-8
lines changed

6 files changed

+18
-8
lines changed

CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
# 0.7.0 - 2020-11-02
2+
3+
- Add blocking callback to `EnvBuilder` (#474)
4+
- Enhance sinks to make them batchable (#469)
5+
- Remove `rustfmt_skip` attribute since it is unstable (#479)
6+
- Use `grpc_slice` to reduce memory copy (#481)
7+
- Fix the bug that server cannot shutdown itself when drop (#484)
8+
- Add methods for channels from file descriptors (#488)
9+
- Update gRPC C core to 1.33.1 (#492)
10+
111
# 0.6.0 - 2020-06-12
212

313
- Switch to std::future (#447)

Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "grpcio"
3-
version = "0.6.0"
3+
version = "0.7.0"
44
edition = "2018"
55
authors = ["The TiKV Project Developers"]
66
license = "Apache-2.0"
@@ -17,7 +17,7 @@ autoexamples = false
1717
all-features = true
1818

1919
[dependencies]
20-
grpcio-sys = { path = "grpc-sys", version = "0.6.0" }
20+
grpcio-sys = { path = "grpc-sys", version = "0.7" }
2121
libc = "0.2"
2222
futures = "0.3"
2323
protobuf = { version = "2.0", optional = true }
@@ -45,4 +45,4 @@ debug = true
4545
travis-ci = { repository = "tikv/grpc-rs" }
4646

4747
[patch.crates-io]
48-
grpcio-compiler = { path = "compiler", version = "0.6.0", default-features = false }
48+
grpcio-compiler = { path = "compiler", version = "0.7.0", default-features = false }

compiler/Cargo.toml

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

grpc-sys/Cargo.toml

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

proto/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -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.6.0", default-features = false }
22+
grpcio = { path = "..", features = ["secure"], version = "0.7.0", 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

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,15 @@ protobuf-codec = ["protobuf", "grpcio/protobuf-codec", "grpcio-proto/protobuf-co
1111
prost-codec = ["prost", "bytes", "grpcio/prost-codec", "grpcio-proto/prost-codec"]
1212

1313
[dependencies]
14-
grpcio-sys = { path = "../grpc-sys", version = "0.6.0" }
14+
grpcio-sys = { path = "../grpc-sys", version = "0.7" }
1515
libc = "0.2"
1616
futures = "0.3"
1717
futures-timer = "3.0"
1818
protobuf = { version = "2.0", optional = true }
1919
prost = { version = "0.6", optional = true }
2020
bytes = { version = "0.5", optional = true }
2121
log = "0.4"
22-
grpcio = { path = "..", version = "0.6.0", default-features = false, features = ["secure"] }
22+
grpcio = { path = "..", version = "0.7", default-features = false, features = ["secure"] }
2323

2424
[dev-dependencies]
2525
serde_json = "1.0"

0 commit comments

Comments
 (0)