Skip to content

Commit cdd4625

Browse files
release v0.55.1 (#1360)
1 parent 5c51c7f commit cdd4625

File tree

7 files changed

+99
-76
lines changed

7 files changed

+99
-76
lines changed

.changelog/v0.55.1/summary.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
This patch release fixes the `Cargo.toml` workspace file and adds a helper
2+
`From<Infallible>` implementation for `ClientError`.
3+
4+
There are no consensus-breaking changes in this release.

CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,24 @@
11
# CHANGELOG
22

3+
## v0.55.1
4+
5+
*October 17, 2024*
6+
7+
This patch release fixes the `Cargo.toml` workspace file and adds a helper
8+
`From<Infallible>` implementation for `ClientError`.
9+
10+
There are no consensus-breaking changes in this release.
11+
12+
### BUG FIXES
13+
14+
- [ibc] Remove non-existing `ibc-client-cw` link in the `Cargo.toml` workspace.
15+
([#1357](https://github.com/cosmos/ibc-rs/issues/1357)).
16+
17+
### IMPROVEMENTS
18+
19+
- [ibc-core] Implement `From<Infallible>` for `ClientError`
20+
([#1356](https://github.com/cosmos/ibc-rs/issues/1356)).
21+
322
## v0.55.0
423

524
*September 26, 2024*

Cargo.toml

Lines changed: 30 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ exclude = [
4444
]
4545

4646
[workspace.package]
47-
version = "0.55.0"
47+
version = "0.55.1"
4848
license = "Apache-2.0"
4949
edition = "2021"
5050
rust-version = "1.72.1"
@@ -68,41 +68,41 @@ subtle-encoding = { version = "0.5", default-features = false }
6868
hex = { version = "0.4.3", default-features = false }
6969

7070
# ibc dependencies
71-
ibc = { version = "0.55.0", path = "./ibc", default-features = false }
72-
ibc-core = { version = "0.55.0", path = "./ibc-core", default-features = false }
73-
ibc-clients = { version = "0.55.0", path = "./ibc-clients", default-features = false }
74-
ibc-apps = { version = "0.55.0", path = "./ibc-apps", default-features = false }
75-
ibc-primitives = { version = "0.55.0", path = "./ibc-primitives", default-features = false }
76-
ibc-testkit = { version = "0.55.0", path = "./ibc-testkit", default-features = false }
71+
ibc = { version = "0.55.1", path = "./ibc", default-features = false }
72+
ibc-core = { version = "0.55.1", path = "./ibc-core", default-features = false }
73+
ibc-clients = { version = "0.55.1", path = "./ibc-clients", default-features = false }
74+
ibc-apps = { version = "0.55.1", path = "./ibc-apps", default-features = false }
75+
ibc-primitives = { version = "0.55.1", path = "./ibc-primitives", default-features = false }
76+
ibc-testkit = { version = "0.55.1", path = "./ibc-testkit", default-features = false }
7777

7878
ibc-derive = { version = "0.9.0", path = "./ibc-derive" }
7979

80-
ibc-core-client = { version = "0.55.0", path = "./ibc-core/ics02-client", default-features = false }
81-
ibc-core-connection = { version = "0.55.0", path = "./ibc-core/ics03-connection", default-features = false }
82-
ibc-core-channel = { version = "0.55.0", path = "./ibc-core/ics04-channel", default-features = false }
83-
ibc-core-host = { version = "0.55.0", path = "./ibc-core/ics24-host", default-features = false }
84-
ibc-core-handler = { version = "0.55.0", path = "./ibc-core/ics25-handler", default-features = false }
85-
ibc-core-router = { version = "0.55.0", path = "./ibc-core/ics26-routing", default-features = false }
86-
ibc-query = { version = "0.55.0", path = "./ibc-query", default-features = false }
80+
ibc-core-client = { version = "0.55.1", path = "./ibc-core/ics02-client", default-features = false }
81+
ibc-core-connection = { version = "0.55.1", path = "./ibc-core/ics03-connection", default-features = false }
82+
ibc-core-channel = { version = "0.55.1", path = "./ibc-core/ics04-channel", default-features = false }
83+
ibc-core-host = { version = "0.55.1", path = "./ibc-core/ics24-host", default-features = false }
84+
ibc-core-handler = { version = "0.55.1", path = "./ibc-core/ics25-handler", default-features = false }
85+
ibc-core-router = { version = "0.55.1", path = "./ibc-core/ics26-routing", default-features = false }
86+
ibc-query = { version = "0.55.1", path = "./ibc-query", default-features = false }
8787

88-
ibc-client-tendermint = { version = "0.55.0", path = "./ibc-clients/ics07-tendermint", default-features = false }
88+
ibc-client-tendermint = { version = "0.55.1", path = "./ibc-clients/ics07-tendermint", default-features = false }
8989

90-
ibc-app-transfer = { version = "0.55.0", path = "./ibc-apps/ics20-transfer", default-features = false }
91-
ibc-app-nft-transfer = { version = "0.55.0", path = "./ibc-apps/ics721-nft-transfer", default-features = false }
90+
ibc-app-transfer = { version = "0.55.1", path = "./ibc-apps/ics20-transfer", default-features = false }
91+
ibc-app-nft-transfer = { version = "0.55.1", path = "./ibc-apps/ics721-nft-transfer", default-features = false }
9292

93-
ibc-core-client-context = { version = "0.55.0", path = "./ibc-core/ics02-client/context", default-features = false }
94-
ibc-core-client-types = { version = "0.55.0", path = "./ibc-core/ics02-client/types", default-features = false }
95-
ibc-core-channel-types = { version = "0.55.0", path = "./ibc-core/ics04-channel/types", default-features = false }
96-
ibc-core-connection-types = { version = "0.55.0", path = "./ibc-core/ics03-connection/types", default-features = false }
97-
ibc-core-commitment-types = { version = "0.55.0", path = "./ibc-core/ics23-commitment/types", default-features = false }
98-
ibc-core-host-cosmos = { version = "0.55.0", path = "./ibc-core/ics24-host/cosmos", default-features = false }
99-
ibc-core-host-types = { version = "0.55.0", path = "./ibc-core/ics24-host/types", default-features = false }
100-
ibc-core-handler-types = { version = "0.55.0", path = "./ibc-core/ics25-handler/types", default-features = false }
101-
ibc-core-router-types = { version = "0.55.0", path = "./ibc-core/ics26-routing/types", default-features = false }
102-
ibc-client-tendermint-types = { version = "0.55.0", path = "./ibc-clients/ics07-tendermint/types", default-features = false }
103-
ibc-client-wasm-types = { version = "0.55.0", path = "./ibc-clients/ics08-wasm/types", default-features = false }
104-
ibc-app-transfer-types = { version = "0.55.0", path = "./ibc-apps/ics20-transfer/types", default-features = false }
105-
ibc-app-nft-transfer-types = { version = "0.55.0", path = "./ibc-apps/ics721-nft-transfer/types", default-features = false }
93+
ibc-core-client-context = { version = "0.55.1", path = "./ibc-core/ics02-client/context", default-features = false }
94+
ibc-core-client-types = { version = "0.55.1", path = "./ibc-core/ics02-client/types", default-features = false }
95+
ibc-core-channel-types = { version = "0.55.1", path = "./ibc-core/ics04-channel/types", default-features = false }
96+
ibc-core-connection-types = { version = "0.55.1", path = "./ibc-core/ics03-connection/types", default-features = false }
97+
ibc-core-commitment-types = { version = "0.55.1", path = "./ibc-core/ics23-commitment/types", default-features = false }
98+
ibc-core-host-cosmos = { version = "0.55.1", path = "./ibc-core/ics24-host/cosmos", default-features = false }
99+
ibc-core-host-types = { version = "0.55.1", path = "./ibc-core/ics24-host/types", default-features = false }
100+
ibc-core-handler-types = { version = "0.55.1", path = "./ibc-core/ics25-handler/types", default-features = false }
101+
ibc-core-router-types = { version = "0.55.1", path = "./ibc-core/ics26-routing/types", default-features = false }
102+
ibc-client-tendermint-types = { version = "0.55.1", path = "./ibc-clients/ics07-tendermint/types", default-features = false }
103+
ibc-client-wasm-types = { version = "0.55.1", path = "./ibc-clients/ics08-wasm/types", default-features = false }
104+
ibc-app-transfer-types = { version = "0.55.1", path = "./ibc-apps/ics20-transfer/types", default-features = false }
105+
ibc-app-nft-transfer-types = { version = "0.55.1", path = "./ibc-apps/ics721-nft-transfer/types", default-features = false }
106106

107107
ibc-proto = { version = "0.47.1", default-features = false }
108108

ci/cw-check/Cargo.lock

Lines changed: 21 additions & 21 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)