Skip to content

Commit

Permalink
Release v0.32.0 (#518)
Browse files Browse the repository at this point in the history
* changelog

* bump version
  • Loading branch information
plafer authored Mar 9, 2023
1 parent 79de666 commit 3a4acfd
Show file tree
Hide file tree
Showing 2 changed files with 39 additions and 1 deletion.
38 changes: 38 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,43 @@
# CHANGELOG

## v0.32.0

*March 9, 2023*

This release primarily removes the `'static` lifetime bound on the `Module` trait,
and adds some methods to the token transfer validation trait.

There are no consensus-breaking changes.

### BREAKING CHANGES

- Move `verify_delay_passed` process and its associated errors under the
`ics03_connection` section and reduce entanglements with the
`ValidationContext`.
([#404](https://github.com/cosmos/ibc-rs/issues/404))
- Refactor and privatize Packet/Ack commitment computations for improved security
and modularity.
([#470](https://github.com/cosmos/ibc-rs/issues/470))
- Allow for non-'static bound Modules
[#490](https://github.com/cosmos/ibc-rs/issues/490))
- Separate the validation from the execution process for `send/mint/burn_coins`
operations.
([#502](https://github.com/cosmos/ibc-rs/issues/502))
- Refactor naming in the Transfer application to align with the repo naming
conventions.
([#506](https://github.com/cosmos/ibc-rs/issues/506))
- Refactor `is_send/receive_enabled` interfaces within the transfer application
to `can_send/receive_coins` returning `Result<(), TokenTransferError>` type
for a better failure handler
([#508](https://github.com/cosmos/ibc-rs/issues/508))

### IMPROVEMENTS

- Use `<&str>::deserialize` instead of `String::deserialize` to avoid an extra
allocation ([#496](https://github.com/cosmos/ibc-rs/issues/496))
- In `test_serialization_roundtrip`, check that round-tripped data is equal
([#497](https://github.com/cosmos/ibc-rs/issues/497))

## v0.31.0

*February 28, 2023*
Expand Down
2 changes: 1 addition & 1 deletion crates/ibc/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ibc"
version = "0.31.0"
version = "0.32.0"
edition = "2021"
license = "Apache-2.0"
readme = "README.md"
Expand Down

0 comments on commit 3a4acfd

Please sign in to comment.