Skip to content

Commit

Permalink
*: bump 0.9.0 (#527)
Browse files Browse the repository at this point in the history
Signed-off-by: Jay Lee <[email protected]>
  • Loading branch information
BusyJay authored May 24, 2021
1 parent 2772053 commit 7a48e0b
Show file tree
Hide file tree
Showing 7 changed files with 22 additions and 14 deletions.
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,12 @@
# 0.8.2 - 2012-03-10
# 0.9.0 - 2021-05-24

- Support rich error (#514)
- Provide default service implementations (#521)
- Support abstract UDS (#523)
- Use default-features=false on libz-sys to allow for zlib-ng (#525)
- Update grpc to 1.38.0 (#526)

# 0.8.2 - 2021-03-10

- Fix send requirement in connectivity APIs (#516)
- Add default health service implemetations (#518)
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.8.2"
version = "0.9.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.8", default-features = false }
grpcio-sys = { path = "grpc-sys", version = "0.9", default-features = false }
libc = "0.2"
futures = "0.3"
protobuf = { version = "2.0", optional = true }
Expand Down Expand Up @@ -53,4 +53,4 @@ use-bindgen = ["grpcio-sys/use-bindgen"]
travis-ci = { repository = "tikv/grpc-rs" }

[patch.crates-io]
grpcio-compiler = { path = "compiler", version = "0.8.0", default-features = false }
grpcio-compiler = { path = "compiler", version = "0.9.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.8.0"
version = "0.9.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.8.1+1.38.0"
version = "0.9.0+1.38.0"
authors = ["The TiKV Project Developers"]
license = "Apache-2.0"
keywords = ["grpc", "bindings"]
Expand Down
4 changes: 2 additions & 2 deletions health/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "grpcio-health"
version = "0.8.0"
version = "0.9.0"
edition = "2018"
authors = ["The TiKV Project Developers"]
license = "Apache-2.0"
Expand All @@ -20,7 +20,7 @@ use-bindgen = ["grpcio/use-bindgen"]

[dependencies]
futures = "0.3"
grpcio = { path = "..", features = ["secure"], version = "0.8.0", default-features = false }
grpcio = { path = "..", features = ["secure"], version = "0.9.0", default-features = false }
prost = { version = "0.7", optional = true }
protobuf = { version = "2", optional = true }
log = "0.4"
4 changes: 2 additions & 2 deletions proto/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "grpcio-proto"
version = "0.8.1"
version = "0.9.0"
edition = "2018"
authors = ["The TiKV Project Developers"]
license = "Apache-2.0"
Expand All @@ -20,7 +20,7 @@ use-bindgen = ["grpcio/use-bindgen"]

[dependencies]
futures = "0.3"
grpcio = { path = "..", features = ["secure"], version = "0.8.0", default-features = false }
grpcio = { path = "..", features = ["secure"], version = "0.9.0", default-features = false }
bytes = { version = "1.0", optional = true }
prost = { version = "0.7", optional = true }
prost-derive = { version = "0.7", optional = true }
Expand Down
8 changes: 4 additions & 4 deletions tests-and-examples/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,22 +11,22 @@ protobuf-codec = ["protobuf", "grpcio/protobuf-codec", "grpcio-proto/protobuf-co
prost-codec = ["prost", "bytes", "grpcio/prost-codec", "grpcio-proto/prost-codec", "grpcio-health/prost-codec"]

[dependencies]
grpcio-sys = { path = "../grpc-sys", version = "0.8" }
grpcio-sys = { path = "../grpc-sys", version = "0.9" }
libc = "0.2"
futures = "0.3"
futures-timer = "3.0"
protobuf = { version = "2.22", optional = true }
prost = { version = "0.7", optional = true }
bytes = { version = "1.0", optional = true }
log = "0.4"
grpcio = { path = "..", version = "0.8", default-features = false, features = ["secure"] }
grpcio-health = { path = "../health", version = "0.8", default-features = false }
grpcio = { path = "..", version = "0.9", default-features = false, features = ["secure"] }
grpcio-health = { path = "../health", version = "0.9", default-features = false }

[dev-dependencies]
serde_json = "1.0"
serde = "1.0"
serde_derive = "1.0"
grpcio-proto = { path = "../proto", version = "0.8.0", default-features = false }
grpcio-proto = { path = "../proto", version = "0.9.0", default-features = false }
rand = "0.7"
slog = "2.0"
slog-async = "2.1"
Expand Down

0 comments on commit 7a48e0b

Please sign in to comment.