Skip to content

Commit

Permalink
Release Hermes v0.7.1 (informalsystems#1352)
Browse files Browse the repository at this point in the history
* Build v0.7.1 changelog

* Bump all crate versions

* Bump version in relayer-rest mock test
  • Loading branch information
romac authored Sep 14, 2021
1 parent d9eb714 commit 0ba0a5d
Show file tree
Hide file tree
Showing 16 changed files with 64 additions and 23 deletions.
2 changes: 2 additions & 0 deletions .changelog/v0.7.1/summary.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
This minor release of Hermes notably features support for Ethermint chains and transfer amounts expressed as a 256-bit unsigned integer.
This release also fixes a bug where the chain runtime within the relayer would crash when failing to decode a invalid header included in a `ClientUpdate` IBC event.
39 changes: 39 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,44 @@
# CHANGELOG

## v0.7.1

This minor release of Hermes notably features support for Ethermint chains and transfer amounts expressed as a 256-bit unsigned integer.
This release also fixes a bug where the chain runtime within the relayer would crash when failing to decode a invalid header included in a `ClientUpdate` IBC event.

### BUG FIXES

- Fix header decoding error which resulted in killing the chain runtime ([#1342](https://github.com/informalsystems/ibc-rs/issues/1342))

- [gm](scripts/gm)
- Fix gaiad keys add prints to stderr instead of stdout in SDK 0.43 ([#1312])
- Bumped default `rpc_timeout` in Hermes config to 5 seconds ([#1312])

[#1312]: https://github.com/informalsystems/ibc-rs/issues/1312

### FEATURES

- Added post-Stargate (v0.5+) Ethermint support ([#1267] [#1071])

[#1267]: https://github.com/informalsystems/ibc-rs/issues/1267
[#1071]: https://github.com/informalsystems/ibc-rs/issues/1071

### IMPROVEMENTS

- General
- Derive `Debug`, `PartialEq` and `Eq` traits for module errors ([#1281])
- Add MBT tests for ICS 07 Client Upgrade ([#1311])
- Add support for uint256 transfer amounts ([#1319])

- [ibc](modules)
- Change all `*Reader` traits to return `Result` instead of `Option` ([#1268])
- Clean up modules' errors ([#1333])

[#1268]: https://github.com/informalsystems/ibc-rs/issues/1268
[#1281]: https://github.com/informalsystems/ibc-rs/issues/1281
[#1311]: https://github.com/informalsystems/ibc-rs/issues/1311
[#1319]: https://github.com/informalsystems/ibc-rs/issues/1319
[#1333]: https://github.com/informalsystems/ibc-rs/issues/1333

## v0.7.0

This release of Hermes is the first to be compatible with the development version of Cosmos SDK 0.43.
Expand Down
12 changes: 6 additions & 6 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 6 additions & 6 deletions relayer-cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ibc-relayer-cli"
version = "0.7.0"
version = "0.7.1"
edition = "2018"
license = "Apache-2.0"
readme = "README.md"
Expand All @@ -25,11 +25,11 @@ telemetry = ["ibc-relayer/telemetry", "ibc-telemetry"]
rest-server = ["ibc-relayer-rest"]

[dependencies]
ibc = { version = "0.7.0", path = "../modules" }
ibc-relayer = { version = "0.7.0", path = "../relayer" }
ibc-proto = { version = "0.10.0", path = "../proto" }
ibc-telemetry = { version = "0.7.0", path = "../telemetry", optional = true }
ibc-relayer-rest = { version = "0.7.0", path = "../relayer-rest", optional = true }
ibc = { version = "0.7.1", path = "../modules" }
ibc-relayer = { version = "0.7.1", path = "../relayer" }
ibc-proto = { version = "0.10.1", path = "../proto" }
ibc-telemetry = { version = "0.7.1", path = "../telemetry", optional = true }
ibc-relayer-rest = { version = "0.7.1", path = "../relayer-rest", optional = true }

gumdrop = { version = "0.7", features = ["default_expr"] }
serde = { version = "1", features = ["serde_derive"] }
Expand Down
6 changes: 3 additions & 3 deletions relayer-rest/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ibc-relayer-rest"
version = "0.7.0"
version = "0.7.1"
authors = ["Informal Systems <[email protected]>"]
edition = "2018"
license = "Apache-2.0"
Expand All @@ -14,8 +14,8 @@ description = """
"""

[dependencies]
ibc = { version = "0.7.0", path = "../modules" }
ibc-relayer = { version = "0.7.0", path = "../relayer" }
ibc = { version = "0.7.1", path = "../modules" }
ibc-relayer = { version = "0.7.1", path = "../relayer" }

crossbeam-channel = "0.5"
rouille = "3.3"
Expand Down
2 changes: 1 addition & 1 deletion relayer-rest/tests/mock.rs
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ fn version() {

let rest_api_version = VersionInfo {
name: "ibc-relayer-rest".to_string(),
version: "0.7.0".to_string(),
version: "0.7.1".to_string(),
};

let result = vec![version.clone(), rest_api_version];
Expand Down
10 changes: 5 additions & 5 deletions relayer/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ibc-relayer"
version = "0.7.0"
version = "0.7.1"
edition = "2018"
license = "Apache-2.0"
readme = "README.md"
Expand All @@ -22,9 +22,9 @@ profiling = []
telemetry = ["ibc-telemetry"]

[dependencies]
ibc = { version = "0.7.0", path = "../modules" }
ibc-proto = { version = "0.10.0", path = "../proto" }
ibc-telemetry = { version = "0.7.0", path = "../telemetry", optional = true }
ibc = { version = "0.7.1", path = "../modules" }
ibc-proto = { version = "0.10.1", path = "../proto" }
ibc-telemetry = { version = "0.7.1", path = "../telemetry", optional = true }

subtle-encoding = "0.5"
async-trait = "0.1.50"
Expand Down Expand Up @@ -80,7 +80,7 @@ features = ["unstable"]
version = "=0.21.0"

[dev-dependencies]
ibc = { version = "0.7.0", path = "../modules", features = ["mocks"] }
ibc = { version = "0.7.1", path = "../modules", features = ["mocks"] }
serial_test = "0.5.0"
env_logger = "0.9.0"
tracing-subscriber = "0.2.22"
Expand Down
4 changes: 2 additions & 2 deletions telemetry/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ibc-telemetry"
version = "0.7.0"
version = "0.7.1"
edition = "2018"
license = "Apache-2.0"
readme = "README.md"
Expand All @@ -13,7 +13,7 @@ description = """
"""

[dependencies]
ibc = { version = "0.7.0", path = "../modules" }
ibc = { version = "0.7.1", path = "../modules" }

crossbeam-channel = "0.5.1"
once_cell = "1.8.0"
Expand Down

0 comments on commit 0ba0a5d

Please sign in to comment.