Skip to content

Commit eea4f0e

Browse files
Release v0.29.0 (#461)
* Update CHANGELOG.md and .changelog dir * Bump version * Fix improvements dir * Update CHANGELOG.md Co-authored-by: Philippe Laferrière <[email protected]> Signed-off-by: Farhad Shabani <[email protected]> * Update .changelog/v0.29.0/summary.md Co-authored-by: Philippe Laferrière <[email protected]> Signed-off-by: Farhad Shabani <[email protected]> * Remove html_root_url --------- Signed-off-by: Farhad Shabani <[email protected]> Co-authored-by: Philippe Laferrière <[email protected]>
1 parent 10b47c0 commit eea4f0e

13 files changed

+49
-2
lines changed

.changelog/v0.29.0/summary.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
This release includes the latest Tendermint-rs v0.29.0 and removes the
2+
`Reader` and `Keeper` API in favor of the new `ValidationContext`/`ExecutionContext` API as the default.
3+
Additionally, unit tests have been updated to work with the new API.
4+
5+
There are consensus-breaking changes.

CHANGELOG.md

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

3+
## v0.29.0
4+
5+
*February 22, 2023*
6+
7+
This release includes the latest Tendermint-rs v0.29.0 and removes the
8+
`Reader` and `Keeper` API in favor of the new `ValidationContext`/`ExecutionContext` API as the default.
9+
Additionally, unit tests have been updated to work with the new API.
10+
11+
There are consensus-breaking changes.
12+
13+
### BREAKING CHANGES
14+
15+
- Remove Reader and Keeper API
16+
([#279](https://github.com/cosmos/ibc-rs/issues/279))
17+
- Refactor `get_*` and `store_*` methods to take `*Path` structs instead
18+
([#382](https://github.com/cosmos/ibc-rs/issues/382))
19+
- Make `ValidationContext::host_timestamp()` abstract and remove
20+
`ValidationContext::pending_host_consensus_state()`
21+
([#418](https://github.com/cosmos/ibc-rs/issues/418))
22+
23+
### BUG FIXES
24+
25+
- Mend error variant todo!()s wherever tendermint client calls the
26+
"consensus_state" method
27+
([#403](https://github.com/cosmos/ibc-rs/issues/403))
28+
29+
### FEATURE
30+
31+
- Remove `val_exec_ctx` feature flag
32+
([#415](https://github.com/cosmos/ibc-rs/issues/415))
33+
34+
### IMPROVEMENTS
35+
36+
- Make all unit tests test the ValidationContext/ExecutionContext API
37+
([#430](https://github.com/cosmos/ibc-rs/issues/430))
38+
- Add an implementation of `validate_self_client` for the mock client
39+
([#432](https://github.com/cosmos/ibc-rs/issues/432))
40+
- Add a docstring and rename the `validate_self_client` argument for improved
41+
code documentation and readability
42+
([#434](https://github.com/cosmos/ibc-rs/issues/434))
43+
- Refactor connection handler unit tests to adapt with new Validation/Execution API
44+
([#440](https://github.com/cosmos/ibc-rs/issues/440))
45+
346
## v0.28.0
447

548
*February 9, 2023*

crates/ibc/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ibc"
3-
version = "0.28.0"
3+
version = "0.29.0"
44
edition = "2021"
55
license = "Apache-2.0"
66
readme = "README.md"

crates/ibc/src/lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313
#![forbid(unsafe_code)]
1414
// https://github.com/cosmos/ibc-rs/issues/342
1515
#![allow(clippy::result_large_err)]
16-
#![doc(html_root_url = "https://docs.rs/ibc/0.28.0")]
1716
//! This library implements the InterBlockchain Communication (IBC) protocol in Rust. IBC is
1817
//! a distributed protocol that enables communication between distinct sovereign blockchains.
1918
//! Loose analogies may be drawn between the IBC protocol and the TCP/UDP protocols that enable

0 commit comments

Comments
 (0)