Skip to content
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 ibc-proto to v0.30.0 and tendermint to v0.31 #689

Merged
merged 1 commit into from
May 22, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
- Bump ibc-proto to v0.30.0 and tendermint to v0.31
([#689](https://github.com/cosmos/ibc-rs/issues/689))
14 changes: 7 additions & 7 deletions crates/ibc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ mocks-no-std = ["cfg-if"]

[dependencies]
# Proto definitions for all IBC-related interfaces, e.g., connections or channels.
ibc-proto = { version = "0.29.0", default-features = false, features = ["parity-scale-codec", "borsh"] }
ibc-proto = { version = "0.30.0", default-features = false, features = ["parity-scale-codec", "borsh"] }
ics23 = { version = "0.9.0", default-features = false, features = ["host-functions"] }
time = { version = ">=0.3.0, <0.3.22", default-features = false }
serde_derive = { version = "1.0.104", default-features = false, optional = true }
Expand Down Expand Up @@ -77,20 +77,20 @@ parking_lot = { version = "0.12.1", default-features = false, optional = true }
cfg-if = { version = "1.0.0", optional = true }

[dependencies.tendermint]
version = "0.30"
version = "0.31"
default-features = false

[dependencies.tendermint-proto]
version = "0.30"
version = "0.31"
default-features = false

[dependencies.tendermint-light-client-verifier]
version = "0.30"
version = "0.31"
default-features = false
features = ["rust-crypto"]

[dependencies.tendermint-testgen]
version = "0.30"
version = "0.31"
optional = true
default-features = false

Expand All @@ -99,7 +99,7 @@ env_logger = "0.10.0"
rstest = "0.16.0"
tracing-subscriber = { version = "0.3.14", features = ["fmt", "env-filter", "json"]}
test-log = { version = "0.2.10", features = ["trace"] }
tendermint-rpc = { version = "0.30", features = ["http-client", "websocket-client"] }
tendermint-testgen = { version = "0.30" } # Needed for generating (synthetic) light blocks.
tendermint-rpc = { version = "0.31", features = ["http-client", "websocket-client"] }
tendermint-testgen = { version = "0.31" } # Needed for generating (synthetic) light blocks.
parking_lot = { version = "0.12.1" }
cfg-if = { version = "1.0.0" }