Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump Cosmos SDK compatibility to <= v0.44.0 #1356

Merged
merged 2 commits into from
Sep 17, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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