From 71ff5b651ed69f4a7416defebe15427448c8c07f Mon Sep 17 00:00:00 2001 From: Romain Ruetschi Date: Wed, 15 Sep 2021 15:27:05 +0200 Subject: [PATCH 1/2] Bump Cosmos SDK compatibility to `<= v0.44.0` --- guide/src/features.md | 2 +- relayer/src/chain/cosmos/compatibility.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/guide/src/features.md b/guide/src/features.md index 18158dc06a..9680e75db4 100644 --- a/guide/src/features.md +++ b/guide/src/features.md @@ -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 diff --git a/relayer/src/chain/cosmos/compatibility.rs b/relayer/src/chain/cosmos/compatibility.rs index 3f59121fc0..f6c6f8063f 100644 --- a/relayer/src/chain/cosmos/compatibility.rs +++ b/relayer/src/chain/cosmos/compatibility.rs @@ -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`. From 6d55ad4ca502fa5b250351ca7587a855204f56db Mon Sep 17 00:00:00 2001 From: Romain Ruetschi Date: Fri, 17 Sep 2021 13:07:39 +0200 Subject: [PATCH 2/2] Add .changelog entry --- .changelog/unreleased/improvements/bump-compat-0.44.md | 1 + 1 file changed, 1 insertion(+) create mode 100644 .changelog/unreleased/improvements/bump-compat-0.44.md diff --git a/.changelog/unreleased/improvements/bump-compat-0.44.md b/.changelog/unreleased/improvements/bump-compat-0.44.md new file mode 100644 index 0000000000..46312d097c --- /dev/null +++ b/.changelog/unreleased/improvements/bump-compat-0.44.md @@ -0,0 +1 @@ + - Bump Cosmos SDK compatibility to v0.44.0 ([#1344](https://github.com/informalsystems/ibc-rs/issues/1344))