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 ics23 dep to 0.11.3, bump ibc-types version to 0.14.1 #91

Merged
merged 2 commits into from
Jul 17, 2024
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
2 changes: 1 addition & 1 deletion ci/no-std-check/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ ibc-types = { path = "../../crates/ibc-types", default-features = false, feature
"serde",
"mocks-no-std",
] }
ibc-proto = { version = "0.42.0", default-features = false }
ibc-proto = { version = "0.42.2", default-features = false }
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why the change to ibc-proto throughout, too? Is that optimistic, or was it required by the ics23 bump?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ibc-types updated its version of ibc-proto so i brought it into alignment

tendermint = { version = "0.34.0", default-features = false }
tendermint-proto = { version = "0.34.0", default-features = false }
tendermint-light-client-verifier = { version = "0.34.0", default-features = false, features = ["rust-crypto"] }
Expand Down
20 changes: 10 additions & 10 deletions crates/ibc-types-core-channel/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ibc-types-core-channel"
version = "0.14.0"
version = "0.14.1"
edition = "2021"
license = "Apache-2.0"
readme = "../../README.md"
Expand Down Expand Up @@ -53,21 +53,21 @@ mocks = ["tendermint-testgen", "tendermint/clock", "cfg-if", "parking_lot"]
mocks-no-std = ["cfg-if"]

[dependencies]
ibc-types-core-client = { version = "0.14.0", path = "../ibc-types-core-client", default-features = false }
ibc-types-core-connection = { version = "0.14.0", path = "../ibc-types-core-connection", default-features = false }
ibc-types-core-commitment = { version = "0.14.0", path = "../ibc-types-core-commitment", default-features = false }
ibc-types-domain-type = { version = "0.14.0", path = "../ibc-types-domain-type", default-features = false }
ibc-types-identifier = { version = "0.14.0", path = "../ibc-types-identifier", default-features = false }
ibc-types-timestamp = { version = "0.14.0", path = "../ibc-types-timestamp", default-features = false }
ibc-types-core-client = { version = "0.14.1", path = "../ibc-types-core-client", default-features = false }
ibc-types-core-connection = { version = "0.14.1", path = "../ibc-types-core-connection", default-features = false }
ibc-types-core-commitment = { version = "0.14.1", path = "../ibc-types-core-commitment", default-features = false }
ibc-types-domain-type = { version = "0.14.1", path = "../ibc-types-domain-type", default-features = false }
ibc-types-identifier = { version = "0.14.1", path = "../ibc-types-identifier", default-features = false }
ibc-types-timestamp = { version = "0.14.1", path = "../ibc-types-timestamp", default-features = false }
# Proto definitions for all IBC-related interfaces, e.g., connections or channels.
ibc-proto = { version = "0.42.0", default-features = false }
ibc-proto = { version = "0.42.2", default-features = false }
## for borsh encode or decode
borsh = {version = "0.10.0", default-features = false, optional = true }
bytes = { version = "1.2.1", default-features = false }
cfg-if = { version = "1.0.0", optional = true }
derive_more = { version = "0.99.17", default-features = false, features = ["from", "into", "display"] }
displaydoc = { version = "0.2", default-features = false }
ics23 = { version = "0.11.0", default-features = false, features = ["host-functions"] }
ics23 = { version = "0.11.3", default-features = false, features = ["host-functions"] }
num-traits = { version = "0.2.15", default-features = false }
## for codec encode or decode
parity-scale-codec = { version = "3.0.0", default-features = false, features = ["full"], optional = true }
Expand Down Expand Up @@ -102,6 +102,6 @@ default-features = false
[dev-dependencies]
cfg-if = { version = "1.0.0" }
env_logger = "0.10.0"
ibc-types-core-client = { version = "0.14.0", path = "../ibc-types-core-client", features = ["mocks"] }
ibc-types-core-client = { version = "0.14.1", path = "../ibc-types-core-client", features = ["mocks"] }
test-log = { version = "0.2.10", features = ["trace"] }
tracing-subscriber = { version = "0.3.14", features = ["fmt", "env-filter", "json"]}
12 changes: 6 additions & 6 deletions crates/ibc-types-core-client/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ibc-types-core-client"
version = "0.14.0"
version = "0.14.1"
edition = "2021"
license = "Apache-2.0"
readme = "../../README.md"
Expand Down Expand Up @@ -54,11 +54,11 @@ bytes = { version = "1.2.1", default-features = false }
cfg-if = { version = "1.0.0", optional = true }
derive_more = { version = "0.99.17", default-features = false, features = ["from", "into", "display"] }
displaydoc = { version = "0.2", default-features = false }
ibc-proto = { version = "0.42.0", default-features = false }
ibc-types-domain-type = { version = "0.14.0", path = "../ibc-types-domain-type", default-features = false }
ibc-types-identifier = { version = "0.14.0", path = "../ibc-types-identifier", default-features = false }
ibc-types-timestamp = { version = "0.14.0", path = "../ibc-types-timestamp", default-features = false }
ics23 = { version = "0.11.0", default-features = false, features = ["host-functions"] }
ibc-proto = { version = "0.42.2", default-features = false }
ibc-types-domain-type = { version = "0.14.1", path = "../ibc-types-domain-type", default-features = false }
ibc-types-identifier = { version = "0.14.1", path = "../ibc-types-identifier", default-features = false }
ibc-types-timestamp = { version = "0.14.1", path = "../ibc-types-timestamp", default-features = false }
ics23 = { version = "0.11.3", default-features = false, features = ["host-functions"] }
num-traits = { version = "0.2.15", default-features = false }
parity-scale-codec = { version = "3.0.0", default-features = false, features = ["full"], optional = true }
prost = { version = "0.12", default-features = false }
Expand Down
12 changes: 6 additions & 6 deletions crates/ibc-types-core-commitment/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ibc-types-core-commitment"
version = "0.14.0"
version = "0.14.1"
edition = "2021"
license = "Apache-2.0"
readme = "../../README.md"
Expand Down Expand Up @@ -55,12 +55,12 @@ mocks = ["tendermint-testgen", "tendermint/clock", "cfg-if", "parking_lot"]
mocks-no-std = ["cfg-if"]

[dependencies]
ibc-types-timestamp = { version = "0.14.0", path = "../ibc-types-timestamp", default-features = false }
ibc-types-identifier = { version = "0.14.0", path = "../ibc-types-identifier", default-features = false }
ibc-types-domain-type = { version = "0.14.0", path = "../ibc-types-domain-type", default-features = false }
ibc-types-timestamp = { version = "0.14.1", path = "../ibc-types-timestamp", default-features = false }
ibc-types-identifier = { version = "0.14.1", path = "../ibc-types-identifier", default-features = false }
ibc-types-domain-type = { version = "0.14.1", path = "../ibc-types-domain-type", default-features = false }
# Proto definitions for all IBC-related interfaces, e.g., connections or channels.
ibc-proto = { version = "0.42.0", default-features = false }
ics23 = { version = "0.11.0", default-features = false, features = ["host-functions"] }
ibc-proto = { version = "0.42.2", default-features = false }
ics23 = { version = "0.11.3", default-features = false, features = ["host-functions"] }
time = { version = "0.3", default-features = false }
serde_derive = { version = "1.0.104", default-features = false, optional = true }
serde = { version = "1.0", default-features = false, optional = true }
Expand Down
18 changes: 9 additions & 9 deletions crates/ibc-types-core-connection/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ibc-types-core-connection"
version = "0.14.0"
version = "0.14.1"
edition = "2021"
license = "Apache-2.0"
readme = "../../README.md"
Expand Down Expand Up @@ -51,18 +51,18 @@ mocks = ["tendermint-testgen", "tendermint/clock", "cfg-if", "parking_lot"]
mocks-no-std = ["cfg-if"]

[dependencies]
ibc-types-timestamp = { version = "0.14.0", path = "../ibc-types-timestamp", default-features = false }
ibc-types-core-commitment = { version = "0.14.0", path = "../ibc-types-core-commitment", default-features = false }
ibc-types-identifier = { version = "0.14.0", path = "../ibc-types-identifier", default-features = false }
ibc-types-domain-type = { version = "0.14.0", path = "../ibc-types-domain-type", default-features = false }
ibc-types-core-client = { version = "0.14.0", path = "../ibc-types-core-client", default-features = false }
ibc-types-timestamp = { version = "0.14.1", path = "../ibc-types-timestamp", default-features = false }
ibc-types-core-commitment = { version = "0.14.1", path = "../ibc-types-core-commitment", default-features = false }
ibc-types-identifier = { version = "0.14.1", path = "../ibc-types-identifier", default-features = false }
ibc-types-domain-type = { version = "0.14.1", path = "../ibc-types-domain-type", default-features = false }
ibc-types-core-client = { version = "0.14.1", path = "../ibc-types-core-client", default-features = false }
borsh = {version = "0.10.0", default-features = false, optional = true }
bytes = { version = "1.2.1", default-features = false }
cfg-if = { version = "1.0.0", optional = true }
derive_more = { version = "0.99.17", default-features = false, features = ["from", "into", "display"] }
displaydoc = { version = "0.2", default-features = false }
ibc-proto = { version = "0.42.0", default-features = false }
ics23 = { version = "0.11.0", default-features = false, features = ["host-functions"] }
ibc-proto = { version = "0.42.2", default-features = false }
ics23 = { version = "0.11.3", default-features = false, features = ["host-functions"] }
num-traits = { version = "0.2.15", default-features = false }
parity-scale-codec = { version = "3.0.0", default-features = false, features = ["full"], optional = true }
parking_lot = { version = "0.12.1", default-features = false, optional = true }
Expand Down Expand Up @@ -95,5 +95,5 @@ env_logger = "0.10.0"
tracing-subscriber = { version = "0.3.14", features = ["fmt", "env-filter", "json"]}
test-log = { version = "0.2.10", features = ["trace"] }
cfg-if = { version = "1.0.0" }
ibc-types-core-client = { version = "0.14.0", path = "../ibc-types-core-client", features = ["mocks"] }
ibc-types-core-client = { version = "0.14.1", path = "../ibc-types-core-client", features = ["mocks"] }
tracing = { version = "0.1.36", default-features = false }
2 changes: 1 addition & 1 deletion crates/ibc-types-domain-type/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ibc-types-domain-type"
version = "0.14.0"
version = "0.14.1"
edition = "2021"
license = "Apache-2.0"
publish = true
Expand Down
2 changes: 1 addition & 1 deletion crates/ibc-types-identifier/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ibc-types-identifier"
version = "0.14.0"
version = "0.14.1"
edition = "2021"
license = "Apache-2.0"
readme = "../../README.md"
Expand Down
20 changes: 10 additions & 10 deletions crates/ibc-types-lightclients-tendermint/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ibc-types-lightclients-tendermint"
version = "0.14.0"
version = "0.14.1"
edition = "2021"
license = "Apache-2.0"
readme = "../../README.md"
Expand Down Expand Up @@ -56,15 +56,15 @@ mocks = ["tendermint-testgen", "tendermint/clock", "cfg-if", "parking_lot"]
mocks-no-std = ["cfg-if"]

[dependencies]
ibc-types-timestamp = { version = "0.14.0", path = "../ibc-types-timestamp", default-features = false }
ibc-types-identifier = { version = "0.14.0", path = "../ibc-types-identifier", default-features = false }
ibc-types-domain-type = { version = "0.14.0", path = "../ibc-types-domain-type", default-features = false }
ibc-types-core-client = { version = "0.14.0", path = "../ibc-types-core-client", default-features = false }
ibc-types-core-connection = { version = "0.14.0", path = "../ibc-types-core-connection", default-features = false }
ibc-types-core-commitment = { version = "0.14.0", path = "../ibc-types-core-commitment", default-features = false }
ibc-types-timestamp = { version = "0.14.1", path = "../ibc-types-timestamp", default-features = false }
ibc-types-identifier = { version = "0.14.1", path = "../ibc-types-identifier", default-features = false }
ibc-types-domain-type = { version = "0.14.1", path = "../ibc-types-domain-type", default-features = false }
ibc-types-core-client = { version = "0.14.1", path = "../ibc-types-core-client", default-features = false }
ibc-types-core-connection = { version = "0.14.1", path = "../ibc-types-core-connection", default-features = false }
ibc-types-core-commitment = { version = "0.14.1", path = "../ibc-types-core-commitment", default-features = false }
# Proto definitions for all IBC-related interfaces, e.g., connections or channels.
ibc-proto = { version = "0.42.0", default-features = false }
ics23 = { version = "0.11.0", default-features = false, features = ["host-functions"] }
ibc-proto = { version = "0.42.2", default-features = false }
ics23 = { version = "0.11.3", default-features = false, features = ["host-functions"] }
time = { version = "0.3", default-features = false }
serde_derive = { version = "1.0.104", default-features = false, optional = true }
serde = { version = "1.0", default-features = false, optional = true }
Expand Down Expand Up @@ -119,4 +119,4 @@ tendermint-testgen = { version = "0.34.0" } # Needed for generating (synthetic)
parking_lot = { version = "0.12.1" }
cfg-if = { version = "1.0.0" }

ibc-types-core-client = { version = "0.14.0", path = "../ibc-types-core-client", features = ["mocks"] }
ibc-types-core-client = { version = "0.14.1", path = "../ibc-types-core-client", features = ["mocks"] }
8 changes: 4 additions & 4 deletions crates/ibc-types-path/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ibc-types-path"
version = "0.14.0"
version = "0.14.1"
edition = "2021"
license = "Apache-2.0"
readme = "../../README.md"
Expand Down Expand Up @@ -46,9 +46,9 @@ mocks-no-std = ["cfg-if"]

[dependencies]
derive_more = { version = "0.99.17", default-features = false, features = ["from", "into", "display"] }
ibc-types-core-client = { version = "0.14.0", path = "../ibc-types-core-client", default-features = false }
ibc-types-core-connection = { version = "0.14.0", path = "../ibc-types-core-connection", default-features = false }
ibc-types-core-channel = { version = "0.14.0", path = "../ibc-types-core-channel", default-features = false }
ibc-types-core-client = { version = "0.14.1", path = "../ibc-types-core-client", default-features = false }
ibc-types-core-connection = { version = "0.14.1", path = "../ibc-types-core-connection", default-features = false }
ibc-types-core-channel = { version = "0.14.1", path = "../ibc-types-core-channel", default-features = false }
borsh = {version = "0.10.0", default-features = false, optional = true }
bytes = { version = "1.2.1", default-features = false }
cfg-if = { version = "1.0.0", optional = true }
Expand Down
2 changes: 1 addition & 1 deletion crates/ibc-types-timestamp/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ibc-types-timestamp"
version = "0.14.0"
version = "0.14.1"
edition = "2021"
license = "Apache-2.0"
readme = "../../README.md"
Expand Down
2 changes: 1 addition & 1 deletion crates/ibc-types-transfer/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ibc-types-transfer"
version = "0.14.0"
version = "0.14.1"
edition = "2021"
license = "Apache-2.0"
readme = "../../README.md"
Expand Down
22 changes: 11 additions & 11 deletions crates/ibc-types/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ibc-types"
version = "0.14.0"
version = "0.14.1"
edition = "2021"
license = "Apache-2.0"
readme = "../../README.md"
Expand Down Expand Up @@ -56,13 +56,13 @@ mocks = [
]

[dependencies]
ibc-types-timestamp = { version = "0.14.0", path = "../ibc-types-timestamp", default-features = false }
ibc-types-identifier = { version = "0.14.0", path = "../ibc-types-identifier", default-features = false }
ibc-types-domain-type = { version = "0.14.0", path = "../ibc-types-domain-type", default-features = false }
ibc-types-core-client = { version = "0.14.0", path = "../ibc-types-core-client", default-features = false }
ibc-types-core-connection = { version = "0.14.0", path = "../ibc-types-core-connection", default-features = false }
ibc-types-core-channel = { version = "0.14.0", path = "../ibc-types-core-channel", default-features = false }
ibc-types-core-commitment = { version = "0.14.0", path = "../ibc-types-core-commitment", default-features = false }
ibc-types-lightclients-tendermint = { version = "0.14.0", path = "../ibc-types-lightclients-tendermint", default-features = false }
ibc-types-path = { version = "0.14.0", path = "../ibc-types-path", default-features = false }
ibc-types-transfer = { version = "0.14.0", path = "../ibc-types-transfer", default-features = false }
ibc-types-timestamp = { version = "0.14.1", path = "../ibc-types-timestamp", default-features = false }
ibc-types-identifier = { version = "0.14.1", path = "../ibc-types-identifier", default-features = false }
ibc-types-domain-type = { version = "0.14.1", path = "../ibc-types-domain-type", default-features = false }
ibc-types-core-client = { version = "0.14.1", path = "../ibc-types-core-client", default-features = false }
ibc-types-core-connection = { version = "0.14.1", path = "../ibc-types-core-connection", default-features = false }
ibc-types-core-channel = { version = "0.14.1", path = "../ibc-types-core-channel", default-features = false }
ibc-types-core-commitment = { version = "0.14.1", path = "../ibc-types-core-commitment", default-features = false }
ibc-types-lightclients-tendermint = { version = "0.14.1", path = "../ibc-types-lightclients-tendermint", default-features = false }
ibc-types-path = { version = "0.14.1", path = "../ibc-types-path", default-features = false }
ibc-types-transfer = { version = "0.14.1", path = "../ibc-types-transfer", default-features = false }
2 changes: 1 addition & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
let
ibc-types = (craneLib.buildPackage {
pname = "ibc-types";
version = "0.14.0";
version = "0.14.1";
nativeBuildInputs = [ pkg-config ];
buildInputs = [ openssl ];
inherit src system PKG_CONFIG_PATH;
Expand Down
Loading