Skip to content

Commit

Permalink
chore: prepare changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
Farhad-Shabani committed Jan 29, 2025
1 parent 230e7a5 commit 2d89725
Show file tree
Hide file tree
Showing 9 changed files with 57 additions and 5 deletions.
2 changes: 0 additions & 2 deletions .changelog/unreleased/features/1390-derive-arbitrary.md

This file was deleted.

2 changes: 0 additions & 2 deletions .changelog/unreleased/features/1392-optional-ack.md

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
- [ibc-apps] Replace the `TryFrom<Signer>` bound on `AccountId` with new
context methods, with the aim of contextually parsing `Signer` instances.
([\#1393](https://github.com/cosmos/ibc-rs/pull/1393))
([\#1393](https://github.com/cosmos/ibc-rs/pull/1393))
2 changes: 2 additions & 0 deletions .changelog/v0.57.0/features/1390-derive-arbitrary.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
- [ibc] Added arbitrary trait implementation behind "arbitrary" feature flag.
([\#1390](https://github.com/cosmos/ibc-rs/pull/1390))
2 changes: 2 additions & 0 deletions .changelog/v0.57.0/features/1392-optional-ack.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
- [ibc-core] Support asynchronous packet acknowledgements.
([\#1392](https://github.com/cosmos/ibc-rs/pull/1392))
14 changes: 14 additions & 0 deletions .changelog/v0.57.0/summary.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@

This release introduces improvements to better support the **Packet Forward
Middleware**, including asynchronous packet acknowledgments and enhanced
contextual parsing of sender and receiver instances in ICS-20. The update
removes the reliance on `TryFrom<Signer>` for parsing, improving flexibility in
transaction handling.

Additionally, the "arbitrary" feature flag now enables the implementation of the
`Arbitrary` trait, enhancing testing capabilities. Furthermore, `Serde` support
has been added for `Height` without `revision_number`, facilitating better
interoperability with CosmWasm light clients operating on the `08-wasm` module
of `ibc-go`.

There are no consensus-breaking changes in this release.
38 changes: 38 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,43 @@
# CHANGELOG

## v0.57.0

*January 29, 2025*

This release introduces improvements to better support the **Packet Forward
Middleware**, including asynchronous packet acknowledgments and enhanced
contextual parsing of sender and receiver instances in ICS-20. The update
removes the reliance on `TryFrom<Signer>` for parsing, improving flexibility in
transaction handling.

Additionally, the "arbitrary" feature flag now enables the implementation of the
`Arbitrary` trait, enhancing testing capabilities. Furthermore, `Serde` support
has been added for `Height` without `revision_number`, facilitating better
interoperability with CosmWasm light clients operating on the `08-wasm` module
of `ibc-go`.

There are no consensus-breaking changes in this release.

### BREAKING CHANGES

- [ibc] Update MSRV to `1.79.0`.
([\#1382](https://github.com/cosmos/ibc-rs/issues/1382))
- [ibc-apps] Replace the `TryFrom<Signer>` bound on `AccountId` with new
context methods, with the aim of contextually parsing `Signer` instances.
([\#1393](https://github.com/cosmos/ibc-rs/pull/1393))

### BUG FIXES

- [ibc-core-client-types] Serde support for `Height` without `revision_number`
([#1262](https://github.com/cosmos/ibc-rs/issues/1262)).

### FEATURES

- [ibc] Added arbitrary trait implementation behind "arbitrary" feature flag.
([\#1390](https://github.com/cosmos/ibc-rs/pull/1390))
- [ibc-core] Support asynchronous packet acknowledgements.
([\#1392](https://github.com/cosmos/ibc-rs/pull/1392))

## v0.56.0

*November 15, 2024*
Expand Down

0 comments on commit 2d89725

Please sign in to comment.