-
Notifications
You must be signed in to change notification settings - Fork 257
*: bump 0.10.0 #559
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
*: bump 0.10.0 #559
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "grpcio-proto" | ||
version = "0.9.0" | ||
version = "0.10.0" | ||
edition = "2018" | ||
authors = ["The TiKV Project Developers"] | ||
license = "Apache-2.0" | ||
|
@@ -18,11 +18,11 @@ protobuf-codec = ["grpcio/protobuf-codec", "protobuf-build/grpcio-protobuf-codec | |
prost-codec = ["prost-derive", "prost-types", "bytes", "lazy_static", "grpcio/prost-codec", "prost", "protobuf-build/grpcio-prost-codec"] | ||
|
||
[dependencies] | ||
grpcio = { path = "..", features = ["boringssl"], version = "0.9.0", default-features = false } | ||
grpcio = { path = "..", features = ["boringssl"], version = "0.10.0", default-features = false } | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It looks like all local libs can be used without specifying a version? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Unless they need to be published to crates.io. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. got it, |
||
bytes = { version = "1.0", optional = true } | ||
prost = { version = "0.8", optional = true } | ||
prost-derive = { version = "0.8", optional = true } | ||
prost-types = { version = "0.8", optional = true } | ||
prost = { version = "0.9", optional = true } | ||
prost-derive = { version = "0.9", optional = true } | ||
prost-types = { version = "0.9", optional = true } | ||
protobuf = "2" | ||
lazy_static = { version = "1.3", optional = true } | ||
|
||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The reason for the change?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
grpc has upgraded to python3. See grpc/grpc#27135.