Skip to content

Commit

Permalink
Release v0.28.0 (#412)
Browse files Browse the repository at this point in the history
* release

* bump versions
  • Loading branch information
plafer authored Feb 9, 2023
1 parent 2722fba commit c9c5ee4
Show file tree
Hide file tree
Showing 13 changed files with 46 additions and 2 deletions.
3 changes: 3 additions & 0 deletions .changelog/v0.28.0/summary.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
With this release, the implementation of the new `ValidationContext`/`ExecutionContext` is complete, although still behind the `val_exec_ctx` feature flag. There were also important bug fixes.

There are consensus-breaking changes.
41 changes: 41 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,46 @@
# CHANGELOG

## v0.28.0

*February 9, 2023*

With this release, the implementation of the new `ValidationContext`/`ExecutionContext` is complete, although still behind the `val_exec_ctx` feature flag. There were also important bug fixes.

There are consensus-breaking changes.

### BREAKING CHANGES

- Implement `verify_upgrade_and_update_state` method for Tendermint clients
([#19](https://github.com/cosmos/ibc-rs/issues/19)).
- Remove support for asynchronous acknowledgements
([#361](https://github.com/cosmos/ibc-rs/issues/361))

### BUG FIXES

- Fix acknowledgement returned by the token transfer's onRecvPacket callback
([#369](https://github.com/cosmos/ibc-rs/issues/369))
- Mend `ChanOpenConfirm` handler check of expected counterparty state
([#396](https://github.com/cosmos/ibc-rs/issues/396))
- Fix issue with the error handling in the `new_check_header_and_update_state`
method when consensus state is not found
([#405](https://github.com/cosmos/ibc-rs/issues/405))
- Fix the caught error by `get_packet_receipt` under `val_exec_ctx` feature when
the packet receipt is not found
([#409](https://github.com/cosmos/ibc-rs/issues/409))

### FEATURE

- Finish implementing `ValidationContext::validate()` and
`ExecutionContext::execute()`
([#393](https://github.com/cosmos/ibc-rs/issues/393))

### IMPROVEMENTS

- Add tests to verify `AbciEvent` match the expected Ibc events
([#163](https://github.com/cosmos/ibc-rs/issues/163)).
- Add unit tests to cover edge scenarios for counterparty conn & chan ids at init phases
([#175](https://github.com/cosmos/ibc-rs/issues/175)).

## v0.27.0

*January 16, 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.27.0"
version = "0.28.0"
edition = "2021"
license = "Apache-2.0"
readme = "README.md"
Expand Down
2 changes: 1 addition & 1 deletion crates/ibc/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
#![forbid(unsafe_code)]
// https://github.com/cosmos/ibc-rs/issues/342
#![allow(clippy::result_large_err)]
#![doc(html_root_url = "https://docs.rs/ibc/0.27.0")]
#![doc(html_root_url = "https://docs.rs/ibc/0.28.0")]
//! This library implements the InterBlockchain Communication (IBC) protocol in Rust. IBC is
//! a distributed protocol that enables communication between distinct sovereign blockchains.
//! Loose analogies may be drawn between the IBC protocol and the TCP/UDP protocols that enable
Expand Down

0 comments on commit c9c5ee4

Please sign in to comment.