From 3def046dbeceebdd4099bf8b82ee6b3488e6b7da Mon Sep 17 00:00:00 2001 From: Chris Czub Date: Wed, 17 Jul 2024 15:31:19 -0400 Subject: [PATCH] Update ics23 to 0.11.3, release version 0.12.1 --- crates/ibc-types-core-channel/Cargo.toml | 18 +++++++-------- crates/ibc-types-core-client/Cargo.toml | 10 ++++----- crates/ibc-types-core-commitment/Cargo.toml | 12 +++++----- crates/ibc-types-core-connection/Cargo.toml | 16 +++++++------- crates/ibc-types-domain-type/Cargo.toml | 2 +- crates/ibc-types-identifier/Cargo.toml | 2 +- .../Cargo.toml | 20 ++++++++--------- crates/ibc-types-path/Cargo.toml | 8 +++---- crates/ibc-types-timestamp/Cargo.toml | 2 +- crates/ibc-types-transfer/Cargo.toml | 2 +- crates/ibc-types/Cargo.toml | 22 +++++++++---------- 11 files changed, 57 insertions(+), 57 deletions(-) diff --git a/crates/ibc-types-core-channel/Cargo.toml b/crates/ibc-types-core-channel/Cargo.toml index 926a2ad..bd56663 100644 --- a/crates/ibc-types-core-channel/Cargo.toml +++ b/crates/ibc-types-core-channel/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ibc-types-core-channel" -version = "0.12.0" +version = "0.12.1" edition = "2021" license = "Apache-2.0" readme = "../../README.md" @@ -53,12 +53,12 @@ mocks = ["tendermint-testgen", "tendermint/clock", "cfg-if", "parking_lot"] mocks-no-std = ["cfg-if"] [dependencies] -ibc-types-core-client = { version = "0.12.0", path = "../ibc-types-core-client", default-features = false } -ibc-types-core-connection = { version = "0.12.0", path = "../ibc-types-core-connection", default-features = false } -ibc-types-core-commitment = { version = "0.12.0", path = "../ibc-types-core-commitment", default-features = false } -ibc-types-domain-type = { version = "0.12.0", path = "../ibc-types-domain-type", default-features = false } -ibc-types-identifier = { version = "0.12.0", path = "../ibc-types-identifier", default-features = false } -ibc-types-timestamp = { version = "0.12.0", path = "../ibc-types-timestamp", default-features = false } +ibc-types-core-client = { version = "0.12.1", path = "../ibc-types-core-client", default-features = false } +ibc-types-core-connection = { version = "0.12.1", path = "../ibc-types-core-connection", default-features = false } +ibc-types-core-commitment = { version = "0.12.1", path = "../ibc-types-core-commitment", default-features = false } +ibc-types-domain-type = { version = "0.12.1", path = "../ibc-types-domain-type", default-features = false } +ibc-types-identifier = { version = "0.12.1", path = "../ibc-types-identifier", default-features = false } +ibc-types-timestamp = { version = "0.12.1", path = "../ibc-types-timestamp", default-features = false } # Proto definitions for all IBC-related interfaces, e.g., connections or channels. ibc-proto = { version = "0.41.0", default-features = false } ## for borsh encode or decode @@ -67,7 +67,7 @@ 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 } @@ -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.12.0", path = "../ibc-types-core-client", features = ["mocks"] } +ibc-types-core-client = { version = "0.12.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"]} diff --git a/crates/ibc-types-core-client/Cargo.toml b/crates/ibc-types-core-client/Cargo.toml index 1fcb1f7..b0dd66b 100644 --- a/crates/ibc-types-core-client/Cargo.toml +++ b/crates/ibc-types-core-client/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ibc-types-core-client" -version = "0.12.0" +version = "0.12.1" edition = "2021" license = "Apache-2.0" readme = "../../README.md" @@ -55,10 +55,10 @@ 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.41.0", default-features = false } -ibc-types-domain-type = { version = "0.12.0", path = "../ibc-types-domain-type", default-features = false } -ibc-types-identifier = { version = "0.12.0", path = "../ibc-types-identifier", default-features = false } -ibc-types-timestamp = { version = "0.12.0", path = "../ibc-types-timestamp", default-features = false } -ics23 = { version = "0.11.0", default-features = false, features = ["host-functions"] } +ibc-types-domain-type = { version = "0.12.1", path = "../ibc-types-domain-type", default-features = false } +ibc-types-identifier = { version = "0.12.1", path = "../ibc-types-identifier", default-features = false } +ibc-types-timestamp = { version = "0.12.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 } diff --git a/crates/ibc-types-core-commitment/Cargo.toml b/crates/ibc-types-core-commitment/Cargo.toml index 987a2d8..fd99065 100644 --- a/crates/ibc-types-core-commitment/Cargo.toml +++ b/crates/ibc-types-core-commitment/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ibc-types-core-commitment" -version = "0.12.0" +version = "0.12.1" edition = "2021" license = "Apache-2.0" readme = "../../README.md" @@ -55,12 +55,12 @@ mocks = ["tendermint-testgen", "tendermint/clock", "cfg-if", "parking_lot"] mocks-no-std = ["cfg-if"] [dependencies] -ibc-types-timestamp = { version = "0.12.0", path = "../ibc-types-timestamp", default-features = false } -ibc-types-identifier = { version = "0.12.0", path = "../ibc-types-identifier", default-features = false } -ibc-types-domain-type = { version = "0.12.0", path = "../ibc-types-domain-type", default-features = false } +ibc-types-timestamp = { version = "0.12.1", path = "../ibc-types-timestamp", default-features = false } +ibc-types-identifier = { version = "0.12.1", path = "../ibc-types-identifier", default-features = false } +ibc-types-domain-type = { version = "0.12.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.41.0", 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"] } 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 } @@ -76,7 +76,7 @@ displaydoc = { version = "0.2", default-features = false } num-traits = { version = "0.2.15", default-features = false } derive_more = { version = "0.99.17", default-features = false, features = ["from", "into", "display"] } uint = { version = "0.9", default-features = false } -primitive-types = { version = "0.12.0", default-features = false, features = ["serde_no_std"] } +primitive-types = { version = "0.12.1", default-features = false, features = ["serde_no_std"] } dyn-clone = "1.0.8" ## for codec encode or decode parity-scale-codec = { version = "3.0.0", default-features = false, features = ["full"], optional = true } diff --git a/crates/ibc-types-core-connection/Cargo.toml b/crates/ibc-types-core-connection/Cargo.toml index db77973..251b224 100644 --- a/crates/ibc-types-core-connection/Cargo.toml +++ b/crates/ibc-types-core-connection/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ibc-types-core-connection" -version = "0.12.0" +version = "0.12.1" edition = "2021" license = "Apache-2.0" readme = "../../README.md" @@ -51,18 +51,18 @@ mocks = ["tendermint-testgen", "tendermint/clock", "cfg-if", "parking_lot"] mocks-no-std = ["cfg-if"] [dependencies] -ibc-types-timestamp = { version = "0.12.0", path = "../ibc-types-timestamp", default-features = false } -ibc-types-core-commitment = { version = "0.12.0", path = "../ibc-types-core-commitment", default-features = false } -ibc-types-identifier = { version = "0.12.0", path = "../ibc-types-identifier", default-features = false } -ibc-types-domain-type = { version = "0.12.0", path = "../ibc-types-domain-type", default-features = false } -ibc-types-core-client = { version = "0.12.0", path = "../ibc-types-core-client", default-features = false } +ibc-types-timestamp = { version = "0.12.1", path = "../ibc-types-timestamp", default-features = false } +ibc-types-core-commitment = { version = "0.12.1", path = "../ibc-types-core-commitment", default-features = false } +ibc-types-identifier = { version = "0.12.1", path = "../ibc-types-identifier", default-features = false } +ibc-types-domain-type = { version = "0.12.1", path = "../ibc-types-domain-type", default-features = false } +ibc-types-core-client = { version = "0.12.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.41.0", 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 } 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 } @@ -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.12.0", path = "../ibc-types-core-client", features = ["mocks"] } +ibc-types-core-client = { version = "0.12.1", path = "../ibc-types-core-client", features = ["mocks"] } tracing = { version = "0.1.36", default-features = false } diff --git a/crates/ibc-types-domain-type/Cargo.toml b/crates/ibc-types-domain-type/Cargo.toml index 4df7221..8b54f6c 100644 --- a/crates/ibc-types-domain-type/Cargo.toml +++ b/crates/ibc-types-domain-type/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ibc-types-domain-type" -version = "0.12.0" +version = "0.12.1" edition = "2021" license = "Apache-2.0" publish = true diff --git a/crates/ibc-types-identifier/Cargo.toml b/crates/ibc-types-identifier/Cargo.toml index 78efdee..52b6989 100644 --- a/crates/ibc-types-identifier/Cargo.toml +++ b/crates/ibc-types-identifier/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ibc-types-identifier" -version = "0.12.0" +version = "0.12.1" edition = "2021" license = "Apache-2.0" readme = "../../README.md" diff --git a/crates/ibc-types-lightclients-tendermint/Cargo.toml b/crates/ibc-types-lightclients-tendermint/Cargo.toml index 9edccc8..46e95d0 100644 --- a/crates/ibc-types-lightclients-tendermint/Cargo.toml +++ b/crates/ibc-types-lightclients-tendermint/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ibc-types-lightclients-tendermint" -version = "0.12.0" +version = "0.12.1" edition = "2021" license = "Apache-2.0" readme = "../../README.md" @@ -56,15 +56,15 @@ mocks = ["tendermint-testgen", "tendermint/clock", "cfg-if", "parking_lot"] mocks-no-std = ["cfg-if"] [dependencies] -ibc-types-timestamp = { version = "0.12.0", path = "../ibc-types-timestamp", default-features = false } -ibc-types-identifier = { version = "0.12.0", path = "../ibc-types-identifier", default-features = false } -ibc-types-domain-type = { version = "0.12.0", path = "../ibc-types-domain-type", default-features = false } -ibc-types-core-client = { version = "0.12.0", path = "../ibc-types-core-client", default-features = false } -ibc-types-core-connection = { version = "0.12.0", path = "../ibc-types-core-connection", default-features = false } -ibc-types-core-commitment = { version = "0.12.0", path = "../ibc-types-core-commitment", default-features = false } +ibc-types-timestamp = { version = "0.12.1", path = "../ibc-types-timestamp", default-features = false } +ibc-types-identifier = { version = "0.12.1", path = "../ibc-types-identifier", default-features = false } +ibc-types-domain-type = { version = "0.12.1", path = "../ibc-types-domain-type", default-features = false } +ibc-types-core-client = { version = "0.12.1", path = "../ibc-types-core-client", default-features = false } +ibc-types-core-connection = { version = "0.12.1", path = "../ibc-types-core-connection", default-features = false } +ibc-types-core-commitment = { version = "0.12.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.41.0", 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"] } 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 } @@ -80,7 +80,7 @@ displaydoc = { version = "0.2", default-features = false } num-traits = { version = "0.2.15", default-features = false } derive_more = { version = "0.99.17", default-features = false, features = ["from", "into", "display"] } uint = { version = "0.9", default-features = false } -primitive-types = { version = "0.12.0", default-features = false, features = ["serde_no_std"] } +primitive-types = { version = "0.12.1", default-features = false, features = ["serde_no_std"] } dyn-clone = "1.0.8" ## for codec encode or decode parity-scale-codec = { version = "3.0.0", default-features = false, features = ["full"], optional = true } @@ -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.12.0", path = "../ibc-types-core-client", features = ["mocks"] } +ibc-types-core-client = { version = "0.12.1", path = "../ibc-types-core-client", features = ["mocks"] } diff --git a/crates/ibc-types-path/Cargo.toml b/crates/ibc-types-path/Cargo.toml index 053d6fb..b509d73 100644 --- a/crates/ibc-types-path/Cargo.toml +++ b/crates/ibc-types-path/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ibc-types-path" -version = "0.12.0" +version = "0.12.1" edition = "2021" license = "Apache-2.0" readme = "../../README.md" @@ -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.12.0", path = "../ibc-types-core-client", default-features = false } -ibc-types-core-connection = { version = "0.12.0", path = "../ibc-types-core-connection", default-features = false } -ibc-types-core-channel = { version = "0.12.0", path = "../ibc-types-core-channel", default-features = false } +ibc-types-core-client = { version = "0.12.1", path = "../ibc-types-core-client", default-features = false } +ibc-types-core-connection = { version = "0.12.1", path = "../ibc-types-core-connection", default-features = false } +ibc-types-core-channel = { version = "0.12.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 } diff --git a/crates/ibc-types-timestamp/Cargo.toml b/crates/ibc-types-timestamp/Cargo.toml index 5e921cd..d5173f3 100644 --- a/crates/ibc-types-timestamp/Cargo.toml +++ b/crates/ibc-types-timestamp/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ibc-types-timestamp" -version = "0.12.0" +version = "0.12.1" edition = "2021" license = "Apache-2.0" readme = "../../README.md" diff --git a/crates/ibc-types-transfer/Cargo.toml b/crates/ibc-types-transfer/Cargo.toml index b579bee..92ecf64 100644 --- a/crates/ibc-types-transfer/Cargo.toml +++ b/crates/ibc-types-transfer/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ibc-types-transfer" -version = "0.12.0" +version = "0.12.1" edition = "2021" license = "Apache-2.0" readme = "../../README.md" diff --git a/crates/ibc-types/Cargo.toml b/crates/ibc-types/Cargo.toml index 71b5c7e..3d14163 100644 --- a/crates/ibc-types/Cargo.toml +++ b/crates/ibc-types/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ibc-types" -version = "0.12.0" +version = "0.12.1" edition = "2021" license = "Apache-2.0" readme = "../../README.md" @@ -56,13 +56,13 @@ mocks = [ ] [dependencies] -ibc-types-timestamp = { version = "0.12.0", path = "../ibc-types-timestamp", default-features = false } -ibc-types-identifier = { version = "0.12.0", path = "../ibc-types-identifier", default-features = false } -ibc-types-domain-type = { version = "0.12.0", path = "../ibc-types-domain-type", default-features = false } -ibc-types-core-client = { version = "0.12.0", path = "../ibc-types-core-client", default-features = false } -ibc-types-core-connection = { version = "0.12.0", path = "../ibc-types-core-connection", default-features = false } -ibc-types-core-channel = { version = "0.12.0", path = "../ibc-types-core-channel", default-features = false } -ibc-types-core-commitment = { version = "0.12.0", path = "../ibc-types-core-commitment", default-features = false } -ibc-types-lightclients-tendermint = { version = "0.12.0", path = "../ibc-types-lightclients-tendermint", default-features = false } -ibc-types-path = { version = "0.12.0", path = "../ibc-types-path", default-features = false } -ibc-types-transfer = { version = "0.12.0", path = "../ibc-types-transfer", default-features = false } +ibc-types-timestamp = { version = "0.12.1", path = "../ibc-types-timestamp", default-features = false } +ibc-types-identifier = { version = "0.12.1", path = "../ibc-types-identifier", default-features = false } +ibc-types-domain-type = { version = "0.12.1", path = "../ibc-types-domain-type", default-features = false } +ibc-types-core-client = { version = "0.12.1", path = "../ibc-types-core-client", default-features = false } +ibc-types-core-connection = { version = "0.12.1", path = "../ibc-types-core-connection", default-features = false } +ibc-types-core-channel = { version = "0.12.1", path = "../ibc-types-core-channel", default-features = false } +ibc-types-core-commitment = { version = "0.12.1", path = "../ibc-types-core-commitment", default-features = false } +ibc-types-lightclients-tendermint = { version = "0.12.1", path = "../ibc-types-lightclients-tendermint", default-features = false } +ibc-types-path = { version = "0.12.1", path = "../ibc-types-path", default-features = false } +ibc-types-transfer = { version = "0.12.1", path = "../ibc-types-transfer", default-features = false }