Skip to content

Commit

Permalink
Bump ibc-proto to v0.21.0 (#2768)
Browse files Browse the repository at this point in the history
  • Loading branch information
romac committed Oct 27, 2022
1 parent d823934 commit e2e2d25
Show file tree
Hide file tree
Showing 11 changed files with 18 additions and 16 deletions.
2 changes: 2 additions & 0 deletions .changelog/unreleased/improvements/2770-bump-ibc-proto.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
- Bump `ibc-proto` to v0.21.0
([#2770](https://github.com/informalsystems/ibc-rs/issues/2770))
5 changes: 3 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ exclude = [
]

[patch.crates-io]
ibc-proto = { git = "https://github.com/cosmos/ibc-proto-rs", rev = "65c050e3a20e3a1ef3c1247788b5013112e207d7" }
# tendermint = { git = "https://github.com/informalsystems/tendermint-rs", branch = "v0.23.x" }
# tendermint-rpc = { git = "https://github.com/informalsystems/tendermint-rs", branch = "v0.23.x" }
# tendermint-proto = { git = "https://github.com/informalsystems/tendermint-rs", branch = "v0.23.x" }
Expand Down
5 changes: 3 additions & 2 deletions ci/no-std-check/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 1 addition & 2 deletions ci/no-std-check/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ edition = "2021"
resolver = "2"

[dependencies]
ibc-proto = { version = "0.20.1", default-features = false }
ibc-proto = { version = "0.21.0", default-features = false }
ibc-relayer-types = { path = "../../crates/relayer-types", default-features = false }
tendermint = { version = "0.25.0", default-features = false }
tendermint-proto = { version = "0.25.0", default-features = false }
Expand All @@ -32,7 +32,6 @@ substrate-std = [
]

[patch.crates-io]
ibc-proto = { git = "https://github.com/cosmos/ibc-proto-rs" }
# tendermint = { git = "https://github.com/informalsystems/tendermint-rs", branch = "v0.23.x" }
# tendermint-proto = { git = "https://github.com/informalsystems/tendermint-rs", branch = "v0.23.x" }
# tendermint-light-client-verifier = { git = "https://github.com/informalsystems/tendermint-rs", branch = "v0.23.x" }
2 changes: 1 addition & 1 deletion crates/ibc-chain-registry/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ description = """
"""

[dependencies]
ibc-proto = { version = "0.20.1" }
ibc-proto = { version = "0.21.0" }
ibc-relayer-types = { version = "0.19.0", path = "../relayer-types", features = ["std"] }

async-trait = "0.1.57"
Expand Down
4 changes: 2 additions & 2 deletions crates/relayer-cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@ telemetry = ["ibc-relayer/telemetry", "ibc-telemetry"]
rest-server = ["ibc-relayer-rest"]

[dependencies]
ibc-relayer-types = { version = "0.19.0", path = "../relayer-types", features = ["std", "clock"] }
ibc-relayer-types = { version = "0.19.0", path = "../relayer-types", features = ["std", "clock"] }
ibc-relayer = { version = "0.19.0", path = "../relayer" }
ibc-proto = { version = "0.20.1" }
ibc-proto = { version = "0.21.0" }
ibc-telemetry = { version = "0.19.0", path = "../telemetry", optional = true }
ibc-relayer-rest = { version = "0.19.0", path = "../relayer-rest", optional = true }
ibc-chain-registry = { version = "0.1.0" , path = "../ibc-chain-registry" }
Expand Down
2 changes: 1 addition & 1 deletion crates/relayer-types/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ mocks = ["tendermint-testgen", "clock", "std"]

[dependencies]
# Proto definitions for all IBC-related interfaces, e.g., connections or channels.
ibc-proto = { version = "0.20.1", default-features = false }
ibc-proto = { version = "0.21.0", default-features = false }
ics23 = { version = "=0.8.1", default-features = false, features = ["host-functions"] }
time = { version = ">=0.3.0, <0.3.17", default-features = false }
serde_derive = { version = "1.0.104", default-features = false }
Expand Down
4 changes: 2 additions & 2 deletions crates/relayer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ profiling = []
telemetry = ["ibc-telemetry"]

[dependencies]
ibc-proto = { version = "0.20.1" }
ibc-telemetry = { version = "0.19.0", path = "../telemetry", optional = true }
ibc-proto = { version = "0.21.0" }
ibc-telemetry = { version = "0.19.0", path = "../telemetry", optional = true }
ibc-relayer-types = { version = "0.19.0", path = "../relayer-types", features = ["mocks"] }

subtle-encoding = "0.5"
Expand Down
4 changes: 2 additions & 2 deletions tools/integration-test/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ description = """
"""

[dependencies]
ibc-relayer-types = { path = "../../crates/relayer-types" }
ibc-relayer-types = { path = "../../crates/relayer-types" }
ibc-relayer = { path = "../../crates/relayer" }
ibc-relayer-cli = { path = "../../crates/relayer-cli" }
ibc-proto = { version = "0.20.1" }
ibc-proto = { version = "0.21.0" }
ibc-test-framework = { path = "../test-framework" }
tendermint = { version = "=0.25.0" }
tendermint-rpc = { version = "=0.25.0", features = ["http-client", "websocket-client"] }
Expand Down
2 changes: 1 addition & 1 deletion tools/test-framework/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ description = """
ibc-relayer-types = { version = "=0.19.0", path = "../../crates/relayer-types" }
ibc-relayer = { version = "=0.19.0", path = "../../crates/relayer" }
ibc-relayer-cli = { version = "=1.0.0", path = "../../crates/relayer-cli" }
ibc-proto = { version = "=0.20.1" }
ibc-proto = { version = "=0.21.0" }
tendermint = { version = "=0.25.0" }
tendermint-rpc = { version = "=0.25.0", features = ["http-client", "websocket-client"] }

Expand Down

0 comments on commit e2e2d25

Please sign in to comment.