Skip to content

Commit

Permalink
*: bump 0.7.0 (#486)
Browse files Browse the repository at this point in the history
Signed-off-by: Xintao <[email protected]>
  • Loading branch information
hunterlxt authored Nov 3, 2020
1 parent bb02598 commit 4112a22
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 8 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand All @@ -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 }
Expand Down Expand Up @@ -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 }
2 changes: 1 addition & 1 deletion compiler/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
2 changes: 1 addition & 1 deletion grpc-sys/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"]
Expand Down
2 changes: 1 addition & 1 deletion proto/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }
Expand Down
4 changes: 2 additions & 2 deletions tests-and-examples/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,15 @@ 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"
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"
Expand Down

0 comments on commit 4112a22

Please sign in to comment.