From 4112a2249ebaa7a354cf59179979e3b4b08a077f Mon Sep 17 00:00:00 2001 From: Xintao Date: Tue, 3 Nov 2020 13:33:07 +0800 Subject: [PATCH] *: bump 0.7.0 (#486) Signed-off-by: Xintao --- CHANGELOG.md | 10 ++++++++++ Cargo.toml | 6 +++--- compiler/Cargo.toml | 2 +- grpc-sys/Cargo.toml | 2 +- proto/Cargo.toml | 2 +- tests-and-examples/Cargo.toml | 4 ++-- 6 files changed, 18 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d4c0b5293..65a0e8c00 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,13 @@ +# 0.7.0 - 2020-11-02 + +- Add blocking callback to `EnvBuilder` (#474) +- Enhance sinks to make them batchable (#469) +- Remove `rustfmt_skip` attribute since it is unstable (#479) +- Use `grpc_slice` to reduce memory copy (#481) +- Fix the bug that server cannot shutdown itself when drop (#484) +- Add methods for channels from file descriptors (#488) +- Update gRPC C core to 1.33.1 (#492) + # 0.6.0 - 2020-06-12 - Switch to std::future (#447) diff --git a/Cargo.toml b/Cargo.toml index 9f08e2f87..18457aa83 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "grpcio" -version = "0.6.0" +version = "0.7.0" edition = "2018" authors = ["The TiKV Project Developers"] license = "Apache-2.0" @@ -17,7 +17,7 @@ autoexamples = false all-features = true [dependencies] -grpcio-sys = { path = "grpc-sys", version = "0.6.0" } +grpcio-sys = { path = "grpc-sys", version = "0.7" } libc = "0.2" futures = "0.3" protobuf = { version = "2.0", optional = true } @@ -45,4 +45,4 @@ debug = true travis-ci = { repository = "tikv/grpc-rs" } [patch.crates-io] -grpcio-compiler = { path = "compiler", version = "0.6.0", default-features = false } +grpcio-compiler = { path = "compiler", version = "0.7.0", default-features = false } diff --git a/compiler/Cargo.toml b/compiler/Cargo.toml index 07731e011..9562198db 100644 --- a/compiler/Cargo.toml +++ b/compiler/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "grpcio-compiler" -version = "0.6.0" +version = "0.7.0" edition = "2018" authors = ["The TiKV Project Developers"] license = "Apache-2.0" diff --git a/grpc-sys/Cargo.toml b/grpc-sys/Cargo.toml index 13a5f2387..b19135ecd 100644 --- a/grpc-sys/Cargo.toml +++ b/grpc-sys/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "grpcio-sys" -version = "0.6.0" +version = "0.7.0" authors = ["The TiKV Project Developers"] license = "Apache-2.0" keywords = ["grpc", "bindings"] diff --git a/proto/Cargo.toml b/proto/Cargo.toml index d845452e7..4e0f6a665 100644 --- a/proto/Cargo.toml +++ b/proto/Cargo.toml @@ -19,7 +19,7 @@ prost-codec = ["prost-derive", "bytes", "lazy_static", "grpcio/prost-codec", "pr [dependencies] futures = "0.3" -grpcio = { path = "..", features = ["secure"], version = "0.6.0", default-features = false } +grpcio = { path = "..", features = ["secure"], version = "0.7.0", default-features = false } bytes = { version = "0.5", optional = true } prost = { version = "0.6", optional = true } prost-derive = { version = "0.6", optional = true } diff --git a/tests-and-examples/Cargo.toml b/tests-and-examples/Cargo.toml index c00d98dc6..6198e7d8b 100644 --- a/tests-and-examples/Cargo.toml +++ b/tests-and-examples/Cargo.toml @@ -11,7 +11,7 @@ protobuf-codec = ["protobuf", "grpcio/protobuf-codec", "grpcio-proto/protobuf-co prost-codec = ["prost", "bytes", "grpcio/prost-codec", "grpcio-proto/prost-codec"] [dependencies] -grpcio-sys = { path = "../grpc-sys", version = "0.6.0" } +grpcio-sys = { path = "../grpc-sys", version = "0.7" } libc = "0.2" futures = "0.3" futures-timer = "3.0" @@ -19,7 +19,7 @@ protobuf = { version = "2.0", optional = true } prost = { version = "0.6", optional = true } bytes = { version = "0.5", optional = true } log = "0.4" -grpcio = { path = "..", version = "0.6.0", default-features = false, features = ["secure"] } +grpcio = { path = "..", version = "0.7", default-features = false, features = ["secure"] } [dev-dependencies] serde_json = "1.0"