Skip to content

Commit

Permalink
Bump compatiblity check for SDK 0.50 and IBC-Go v8 (#3749)
Browse files Browse the repository at this point in the history
* Bump compatiblity check for SDK 0.50 and IBC-Go v8

* Bump lower bounds to IBC-Go v4.1.1 and SDK 0.45.0

* Update compat range in guide

Co-authored-by: Luca Joss <[email protected]>
Signed-off-by: Romain Ruetschi <[email protected]>

* Update guide/src/advanced/features.md

Signed-off-by: Luca Joss <[email protected]>

---------

Signed-off-by: Romain Ruetschi <[email protected]>
Signed-off-by: Luca Joss <[email protected]>
Co-authored-by: Luca Joss <[email protected]>
  • Loading branch information
romac and ljoss17 authored Jan 5, 2024
1 parent 33c67bd commit 2ec3ca4
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
- Update compatibility check to allow IBC-Go 4.1.1 to 8.x and SDK 0.45.x to 0.50.x.
([\#3745](https://github.com/informalsystems/hermes/issues/3745))
4 changes: 2 additions & 2 deletions crates/relayer/src/chain/cosmos/compatibility.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ use super::version;
/// # Note: Should be consistent with [features] guide page.
///
/// [features]: https://hermes.informal.systems/advanced/features.html
const SDK_MODULE_VERSION_REQ: &str = ">=0.44, <0.48";
const SDK_MODULE_VERSION_REQ: &str = ">=0.45, <0.51";

/// Specifies the IBC-go module version requirement.
/// At the moment, we support both chains with and without
Expand All @@ -20,7 +20,7 @@ const SDK_MODULE_VERSION_REQ: &str = ">=0.44, <0.48";
/// # Note: Should be consistent with [features] guide page.
///
/// [features]: https://hermes.informal.systems/advanced/features.html
const IBC_GO_MODULE_VERSION_REQ: &str = ">=1.1, <=7";
const IBC_GO_MODULE_VERSION_REQ: &str = ">=4.1.1, <9";

#[derive(Error, Debug)]
pub enum Diagnostic {
Expand Down
4 changes: 2 additions & 2 deletions guide/src/advanced/features.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ This section includes a summary of the supported and planned features. It also i

> **Cosmos SDK & IBC compatibility:**
> Hermes supports Cosmos SDK chains implementing the [IBC protocol v1][ibcv1-proto] protocol specification.
> Cosmos SDK versions `0.44.0` through `0.47.x` are officially supported.
> IBC-go versions `1.1.*` thorough `7.*` are officially supported.
> Cosmos SDK versions `0.45.0` through `0.50.x` are officially supported.
> IBC-go versions `4.1.1` through `8.x` are officially supported.
> In case Hermes finds an incompatible SDK or IBC-go version, it will output a log warning upon initialization as part of the `start` command or upon `health-check` command.
---
Expand Down

0 comments on commit 2ec3ca4

Please sign in to comment.