Skip to content

Commit c19f2b3

Browse files
committed
ibc-types: bump to 0.6.4
1 parent 0ed5013 commit c19f2b3

File tree

11 files changed

+50
-50
lines changed

11 files changed

+50
-50
lines changed

crates/ibc-types-core-channel/Cargo.toml

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ibc-types-core-channel"
3-
version = "0.6.3"
3+
version = "0.6.4"
44
edition = "2021"
55
license = "Apache-2.0"
66
readme = "../../README.md"
@@ -53,12 +53,12 @@ mocks = ["tendermint-testgen", "tendermint/clock", "cfg-if", "parking_lot"]
5353
mocks-no-std = ["cfg-if"]
5454

5555
[dependencies]
56-
ibc-types-core-client = { version = "0.6.3", path = "../ibc-types-core-client", default-features = false }
57-
ibc-types-core-connection = { version = "0.6.3", path = "../ibc-types-core-connection", default-features = false }
58-
ibc-types-core-commitment = { version = "0.6.3", path = "../ibc-types-core-commitment", default-features = false }
59-
ibc-types-domain-type = { version = "0.6.3", path = "../ibc-types-domain-type", default-features = false }
60-
ibc-types-identifier = { version = "0.6.3", path = "../ibc-types-identifier", default-features = false }
61-
ibc-types-timestamp = { version = "0.6.3", path = "../ibc-types-timestamp", default-features = false }
56+
ibc-types-core-client = { version = "0.6.4", path = "../ibc-types-core-client", default-features = false }
57+
ibc-types-core-connection = { version = "0.6.4", path = "../ibc-types-core-connection", default-features = false }
58+
ibc-types-core-commitment = { version = "0.6.4", path = "../ibc-types-core-commitment", default-features = false }
59+
ibc-types-domain-type = { version = "0.6.4", path = "../ibc-types-domain-type", default-features = false }
60+
ibc-types-identifier = { version = "0.6.4", path = "../ibc-types-identifier", default-features = false }
61+
ibc-types-timestamp = { version = "0.6.4", path = "../ibc-types-timestamp", default-features = false }
6262
# Proto definitions for all IBC-related interfaces, e.g., connections or channels.
6363
ibc-proto = { version = "0.33.0", default-features = false }
6464
## for borsh encode or decode
@@ -102,6 +102,6 @@ default-features = false
102102
[dev-dependencies]
103103
cfg-if = { version = "1.0.0" }
104104
env_logger = "0.10.0"
105-
ibc-types-core-client = { version = "0.6.3", path = "../ibc-types-core-client", features = ["mocks"] }
105+
ibc-types-core-client = { version = "0.6.4", path = "../ibc-types-core-client", features = ["mocks"] }
106106
test-log = { version = "0.2.10", features = ["trace"] }
107107
tracing-subscriber = { version = "0.3.14", features = ["fmt", "env-filter", "json"]}

crates/ibc-types-core-client/Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ibc-types-core-client"
3-
version = "0.6.3"
3+
version = "0.6.4"
44
edition = "2021"
55
license = "Apache-2.0"
66
readme = "../../README.md"
@@ -55,9 +55,9 @@ cfg-if = { version = "1.0.0", optional = true }
5555
derive_more = { version = "0.99.17", default-features = false, features = ["from", "into", "display"] }
5656
displaydoc = { version = "0.2", default-features = false }
5757
ibc-proto = { version = "0.33.0", default-features = false }
58-
ibc-types-domain-type = { version = "0.6.3", path = "../ibc-types-domain-type", default-features = false }
59-
ibc-types-identifier = { version = "0.6.3", path = "../ibc-types-identifier", default-features = false }
60-
ibc-types-timestamp = { version = "0.6.3", path = "../ibc-types-timestamp", default-features = false }
58+
ibc-types-domain-type = { version = "0.6.4", path = "../ibc-types-domain-type", default-features = false }
59+
ibc-types-identifier = { version = "0.6.4", path = "../ibc-types-identifier", default-features = false }
60+
ibc-types-timestamp = { version = "0.6.4", path = "../ibc-types-timestamp", default-features = false }
6161
ics23 = { version = "0.10.1", default-features = false, features = ["host-functions"] }
6262
num-traits = { version = "0.2.15", default-features = false }
6363
parity-scale-codec = { version = "3.0.0", default-features = false, features = ["full"], optional = true }

crates/ibc-types-core-commitment/Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ibc-types-core-commitment"
3-
version = "0.6.3"
3+
version = "0.6.4"
44
edition = "2021"
55
license = "Apache-2.0"
66
readme = "../../README.md"
@@ -55,9 +55,9 @@ mocks = ["tendermint-testgen", "tendermint/clock", "cfg-if", "parking_lot"]
5555
mocks-no-std = ["cfg-if"]
5656

5757
[dependencies]
58-
ibc-types-timestamp = { version = "0.6.3", path = "../ibc-types-timestamp", default-features = false }
59-
ibc-types-identifier = { version = "0.6.3", path = "../ibc-types-identifier", default-features = false }
60-
ibc-types-domain-type = { version = "0.6.3", path = "../ibc-types-domain-type", default-features = false }
58+
ibc-types-timestamp = { version = "0.6.4", path = "../ibc-types-timestamp", default-features = false }
59+
ibc-types-identifier = { version = "0.6.4", path = "../ibc-types-identifier", default-features = false }
60+
ibc-types-domain-type = { version = "0.6.4", path = "../ibc-types-domain-type", default-features = false }
6161
# Proto definitions for all IBC-related interfaces, e.g., connections or channels.
6262
ibc-proto = { version = "0.33.0", default-features = false }
6363
ics23 = { version = "0.10.1", default-features = false, features = ["host-functions"] }

crates/ibc-types-core-connection/Cargo.toml

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ibc-types-core-connection"
3-
version = "0.6.3"
3+
version = "0.6.4"
44
edition = "2021"
55
license = "Apache-2.0"
66
readme = "../../README.md"
@@ -51,11 +51,11 @@ mocks = ["tendermint-testgen", "tendermint/clock", "cfg-if", "parking_lot"]
5151
mocks-no-std = ["cfg-if"]
5252

5353
[dependencies]
54-
ibc-types-timestamp = { version = "0.6.3", path = "../ibc-types-timestamp", default-features = false }
55-
ibc-types-core-commitment = { version = "0.6.3", path = "../ibc-types-core-commitment", default-features = false }
56-
ibc-types-identifier = { version = "0.6.3", path = "../ibc-types-identifier", default-features = false }
57-
ibc-types-domain-type = { version = "0.6.3", path = "../ibc-types-domain-type", default-features = false }
58-
ibc-types-core-client = { version = "0.6.3", path = "../ibc-types-core-client", default-features = false }
54+
ibc-types-timestamp = { version = "0.6.4", path = "../ibc-types-timestamp", default-features = false }
55+
ibc-types-core-commitment = { version = "0.6.4", path = "../ibc-types-core-commitment", default-features = false }
56+
ibc-types-identifier = { version = "0.6.4", path = "../ibc-types-identifier", default-features = false }
57+
ibc-types-domain-type = { version = "0.6.4", path = "../ibc-types-domain-type", default-features = false }
58+
ibc-types-core-client = { version = "0.6.4", path = "../ibc-types-core-client", default-features = false }
5959
borsh = {version = "0.10.0", default-features = false, optional = true }
6060
bytes = { version = "1.2.1", default-features = false }
6161
cfg-if = { version = "1.0.0", optional = true }
@@ -95,5 +95,5 @@ env_logger = "0.10.0"
9595
tracing-subscriber = { version = "0.3.14", features = ["fmt", "env-filter", "json"]}
9696
test-log = { version = "0.2.10", features = ["trace"] }
9797
cfg-if = { version = "1.0.0" }
98-
ibc-types-core-client = { version = "0.6.3", path = "../ibc-types-core-client", features = ["mocks"] }
98+
ibc-types-core-client = { version = "0.6.4", path = "../ibc-types-core-client", features = ["mocks"] }
9999
tracing = { version = "0.1.36", default-features = false }

crates/ibc-types-domain-type/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ibc-types-domain-type"
3-
version = "0.6.3"
3+
version = "0.6.4"
44
edition = "2021"
55
license = "Apache-2.0"
66
publish = true

crates/ibc-types-identifier/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ibc-types-identifier"
3-
version = "0.6.3"
3+
version = "0.6.4"
44
edition = "2021"
55
license = "Apache-2.0"
66
readme = "../../README.md"

crates/ibc-types-lightclients-tendermint/Cargo.toml

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ibc-types-lightclients-tendermint"
3-
version = "0.6.3"
3+
version = "0.6.4"
44
edition = "2021"
55
license = "Apache-2.0"
66
readme = "../../README.md"
@@ -56,12 +56,12 @@ mocks = ["tendermint-testgen", "tendermint/clock", "cfg-if", "parking_lot"]
5656
mocks-no-std = ["cfg-if"]
5757

5858
[dependencies]
59-
ibc-types-timestamp = { version = "0.6.3", path = "../ibc-types-timestamp", default-features = false }
60-
ibc-types-identifier = { version = "0.6.3", path = "../ibc-types-identifier", default-features = false }
61-
ibc-types-domain-type = { version = "0.6.3", path = "../ibc-types-domain-type", default-features = false }
62-
ibc-types-core-client = { version = "0.6.3", path = "../ibc-types-core-client", default-features = false }
63-
ibc-types-core-connection = { version = "0.6.3", path = "../ibc-types-core-connection", default-features = false }
64-
ibc-types-core-commitment = { version = "0.6.3", path = "../ibc-types-core-commitment", default-features = false }
59+
ibc-types-timestamp = { version = "0.6.4", path = "../ibc-types-timestamp", default-features = false }
60+
ibc-types-identifier = { version = "0.6.4", path = "../ibc-types-identifier", default-features = false }
61+
ibc-types-domain-type = { version = "0.6.4", path = "../ibc-types-domain-type", default-features = false }
62+
ibc-types-core-client = { version = "0.6.4", path = "../ibc-types-core-client", default-features = false }
63+
ibc-types-core-connection = { version = "0.6.4", path = "../ibc-types-core-connection", default-features = false }
64+
ibc-types-core-commitment = { version = "0.6.4", path = "../ibc-types-core-commitment", default-features = false }
6565
# Proto definitions for all IBC-related interfaces, e.g., connections or channels.
6666
ibc-proto = { version = "0.33.0", default-features = false }
6767
ics23 = { version = "0.10.1", default-features = false, features = ["host-functions"] }
@@ -119,4 +119,4 @@ tendermint-testgen = { version = "0.33.0" } # Needed for generating (synthetic)
119119
parking_lot = { version = "0.12.1" }
120120
cfg-if = { version = "1.0.0" }
121121

122-
ibc-types-core-client = { version = "0.6.3", path = "../ibc-types-core-client", features = ["mocks"] }
122+
ibc-types-core-client = { version = "0.6.4", path = "../ibc-types-core-client", features = ["mocks"] }

crates/ibc-types-path/Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ibc-types-path"
3-
version = "0.6.3"
3+
version = "0.6.4"
44
edition = "2021"
55
license = "Apache-2.0"
66
readme = "../../README.md"
@@ -46,9 +46,9 @@ mocks-no-std = ["cfg-if"]
4646

4747
[dependencies]
4848
derive_more = { version = "0.99.17", default-features = false, features = ["from", "into", "display"] }
49-
ibc-types-core-client = { version = "0.6.3", path = "../ibc-types-core-client", default-features = false }
50-
ibc-types-core-connection = { version = "0.6.3", path = "../ibc-types-core-connection", default-features = false }
51-
ibc-types-core-channel = { version = "0.6.3", path = "../ibc-types-core-channel", default-features = false }
49+
ibc-types-core-client = { version = "0.6.4", path = "../ibc-types-core-client", default-features = false }
50+
ibc-types-core-connection = { version = "0.6.4", path = "../ibc-types-core-connection", default-features = false }
51+
ibc-types-core-channel = { version = "0.6.4", path = "../ibc-types-core-channel", default-features = false }
5252
borsh = {version = "0.10.0", default-features = false, optional = true }
5353
bytes = { version = "1.2.1", default-features = false }
5454
cfg-if = { version = "1.0.0", optional = true }

crates/ibc-types-timestamp/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ibc-types-timestamp"
3-
version = "0.6.3"
3+
version = "0.6.4"
44
edition = "2021"
55
license = "Apache-2.0"
66
readme = "../../README.md"

crates/ibc-types-transfer/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ibc-types-transfer"
3-
version = "0.6.3"
3+
version = "0.6.4"
44
edition = "2021"
55
license = "Apache-2.0"
66
readme = "../../README.md"

crates/ibc-types/Cargo.toml

+11-11
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ibc-types"
3-
version = "0.6.3"
3+
version = "0.6.4"
44
edition = "2021"
55
license = "Apache-2.0"
66
readme = "../../README.md"
@@ -56,13 +56,13 @@ mocks = [
5656
]
5757

5858
[dependencies]
59-
ibc-types-timestamp = { version = "0.6.3", path = "../ibc-types-timestamp", default-features = false }
60-
ibc-types-identifier = { version = "0.6.3", path = "../ibc-types-identifier", default-features = false }
61-
ibc-types-domain-type = { version = "0.6.3", path = "../ibc-types-domain-type", default-features = false }
62-
ibc-types-core-client = { version = "0.6.3", path = "../ibc-types-core-client", default-features = false }
63-
ibc-types-core-connection = { version = "0.6.3", path = "../ibc-types-core-connection", default-features = false }
64-
ibc-types-core-channel = { version = "0.6.3", path = "../ibc-types-core-channel", default-features = false }
65-
ibc-types-core-commitment = { version = "0.6.3", path = "../ibc-types-core-commitment", default-features = false }
66-
ibc-types-lightclients-tendermint = { version = "0.6.3", path = "../ibc-types-lightclients-tendermint", default-features = false }
67-
ibc-types-path = { version = "0.6.3", path = "../ibc-types-path", default-features = false }
68-
ibc-types-transfer = { version = "0.6.3", path = "../ibc-types-transfer", default-features = false }
59+
ibc-types-timestamp = { version = "0.6.4", path = "../ibc-types-timestamp", default-features = false }
60+
ibc-types-identifier = { version = "0.6.4", path = "../ibc-types-identifier", default-features = false }
61+
ibc-types-domain-type = { version = "0.6.4", path = "../ibc-types-domain-type", default-features = false }
62+
ibc-types-core-client = { version = "0.6.4", path = "../ibc-types-core-client", default-features = false }
63+
ibc-types-core-connection = { version = "0.6.4", path = "../ibc-types-core-connection", default-features = false }
64+
ibc-types-core-channel = { version = "0.6.4", path = "../ibc-types-core-channel", default-features = false }
65+
ibc-types-core-commitment = { version = "0.6.4", path = "../ibc-types-core-commitment", default-features = false }
66+
ibc-types-lightclients-tendermint = { version = "0.6.4", path = "../ibc-types-lightclients-tendermint", default-features = false }
67+
ibc-types-path = { version = "0.6.4", path = "../ibc-types-path", default-features = false }
68+
ibc-types-transfer = { version = "0.6.4", path = "../ibc-types-transfer", default-features = false }

0 commit comments

Comments
 (0)