Skip to content

Commit

Permalink
Bump Cosmos SDK compatibility to <= v0.44.0 (#1356)
Browse files Browse the repository at this point in the history
* Bump Cosmos SDK compatibility to `<= v0.44.0`

* Add .changelog entry
  • Loading branch information
romac committed Sep 17, 2021
1 parent ad085e7 commit 63cf192
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions .changelog/unreleased/improvements/bump-compat-0.44.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
- Bump Cosmos SDK compatibility to v0.44.0 ([#1344](https://github.com/informalsystems/ibc-rs/issues/1344))
2 changes: 1 addition & 1 deletion guide/src/features.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ A feature matrix and comparison between the Rust and Go relayer implementations

> **Cosmos SDK compatibility:**
> Hermes supports Cosmos SDK chains implementing the [IBC v1.0][ibcv1] protocol specification.
> Cosmos SDK versions `0.41.3` to `0.42.9` are officially supported.
> Cosmos SDK versions `0.41.3` to `0.44.0` are officially supported.
> In case Hermes finds an incompatible SDK version, it will output a log warning.
[ibcv1]: https://github.com/cosmos/ibc-go/tree/main/proto/ibc
Expand Down
2 changes: 1 addition & 1 deletion relayer/src/chain/cosmos/compatibility.rs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ const SDK_MODULE_NAME: &str = "cosmos/cosmos-sdk";
/// # Note: Should be consistent with [features] guide page.
///
/// [features]: https://hermes.informal.systems/features.html
const SDK_MODULE_VERSION_REQ: &str = ">=0.41.3, <=0.43.0";
const SDK_MODULE_VERSION_REQ: &str = ">=0.41.3, <=0.44.0";

/// Helper struct to capture all the reported information of an
/// IBC application, e.g., `gaiad`.
Expand Down

0 comments on commit 63cf192

Please sign in to comment.