diff --git a/.changelog/v0.54.0/summary.md b/.changelog/v0.54.0/summary.md index 0d1d0b46d..16ea22c76 100644 --- a/.changelog/v0.54.0/summary.md +++ b/.changelog/v0.54.0/summary.md @@ -6,12 +6,12 @@ the `cosmwasm` directory in an effort to simplify dependency management. Notable bug fixes include: -- correctly preventing expired client creation -- expiring clients when the elapsed time from a trusted header matches the +- Correctly preventing expired client creation +- Expiring clients when the elapsed time from a trusted header matches the trusting period -- allowing user-defined upgrade paths for client upgrades rather than just +- Allowing user-defined upgrade paths for client upgrades rather than just defaulting to `UPGRADED_IBC_STATE` -- preventing `Timestamp::nanoseconds` from panicking by disallowing negative +- Preventing `Timestamp::nanoseconds` from panicking by disallowing negative values from `tendermint::Time` Lastly, this release adds some new features, including allowing proof @@ -19,5 +19,6 @@ verification methods to accept custom paths, thus allowing light client developers to introduce custom path serialization logic into their applications. CosmWasm response types have been refactored to match the `08-wasm` client API. -This release bumps the MSRV of ibc-rs to 1.72.1. The `cosmwasm` dependency has -also been bumped to 2.1.0. +This release bumps the MSRV of ibc-rs to 1.72.1. `prost` has been bumped to 0.13.1. +`ibc-proto` has been bumped to 0.47.0. `tendermint` dependencies have been bumped +to 0.38.0. The `cosmwasm` dependency has also been bumped to 2.1.0. diff --git a/CHANGELOG.md b/CHANGELOG.md index 353ccf863..56e149579 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -25,8 +25,9 @@ verification methods to accept custom paths, thus allowing light client developers to introduce custom path serialization logic into their applications. CosmWasm response types have been refactored to match the `08-wasm` client API. -This release bumps the MSRV of ibc-rs to 1.72.1. The `cosmwasm` dependency has -also been bumped to 2.1.0. +This release bumps the MSRV of ibc-rs to 1.72.1. `prost` has been bumped to 0.13.1. +`ibc-proto` has been bumped to 0.47.0. `tendermint` dependencies have been bumped +to 0.38.0. The `cosmwasm` dependency has also been bumped to 2.1.0. ### BREAKING CHANGES @@ -41,6 +42,9 @@ also been bumped to 2.1.0. - [ibc-core] Separate the packet timeout timestamp from the host `Timestamp` by defining a new specific `TimeoutTimestamp`. ([\#1296](https://github.com/cosmos/ibc-rs/issues/1296)) +- [ibc] Bump `prost` to 0.13.1 +- [ibc] Bump `ibc-proto` to 0.47.0 +- [ibc] Bump `tendermint` dependencies to 0.38.0 ### BUG FIXES