Skip to content

Commit

Permalink
Release Hermes v1.7.3 (#3715)
Browse files Browse the repository at this point in the history
* evidence: More reliable evidence reporting + couple of bug fixes (#3702)

* evidence: Only fetch counterparty clients of chains present in the config

* Harden the evidence reporting code in the face of runtime errors

* Fix bug where the counterparty client id returned was actually the original client id

* Bump version to v1.7.3

* Release changelog
  • Loading branch information
romac authored Nov 29, 2023
1 parent c3210fc commit e529d25
Show file tree
Hide file tree
Showing 17 changed files with 263 additions and 164 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
- Improve reliability of `evidence` command and fix a bug that was
preventing evidence to be reported, as seen on the Gaia RS testnet
([\#3702](https://github.com/informalsystems/hermes/pull/3702))
5 changes: 5 additions & 0 deletions .changelog/v1.7.3/summary.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
*November 29th, 2023*

This release improves the reliability of the `evidence` command and
fixes a bug that was preventing evidence to be reported,
as seen on the Gaia RS testnet.
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# CHANGELOG

## v1.7.3

*November 29th, 2023*

This release improves the reliability of the `evidence` command and
fixes a bug that was preventing evidence to be reported,
as seen on the Gaia RS testnet.

### BUG FIXES

- [Relayer CLI](relayer-cli)
- Improve reliability of `evidence` command and fix a bug that was
preventing evidence to be reported, as seen on the Gaia RS testnet
([\#3702](https://github.com/informalsystems/hermes/pull/3702))

## v1.7.2

*November 28th, 2023*
Expand Down
16 changes: 8 additions & 8 deletions Cargo.lock

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

4 changes: 2 additions & 2 deletions crates/chain-registry/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ibc-chain-registry"
version = "0.26.2"
version = "0.26.3"
edition = "2021"
license = "Apache-2.0"
keywords = ["cosmos", "ibc", "relayer", "chain", "registry"]
Expand All @@ -12,7 +12,7 @@ description = """
"""

[dependencies]
ibc-relayer-types = { version = "0.26.2", path = "../relayer-types" }
ibc-relayer-types = { version = "0.26.3", path = "../relayer-types" }
ibc-proto = { version = "0.38.0", features = ["serde"] }
tendermint-rpc = { version = "0.34.0", features = ["http-client", "websocket-client"] }

Expand Down
12 changes: 6 additions & 6 deletions crates/relayer-cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ibc-relayer-cli"
version = "1.7.2"
version = "1.7.3"
edition = "2021"
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-relayer-types = { version = "0.26.2", path = "../relayer-types" }
ibc-relayer = { version = "0.26.2", path = "../relayer" }
ibc-telemetry = { version = "0.26.2", path = "../telemetry", optional = true }
ibc-relayer-rest = { version = "0.26.2", path = "../relayer-rest", optional = true }
ibc-chain-registry = { version = "0.26.2" , path = "../chain-registry" }
ibc-relayer-types = { version = "0.26.3", path = "../relayer-types" }
ibc-relayer = { version = "0.26.3", path = "../relayer" }
ibc-telemetry = { version = "0.26.3", path = "../telemetry", optional = true }
ibc-relayer-rest = { version = "0.26.3", path = "../relayer-rest", optional = true }
ibc-chain-registry = { version = "0.26.3" , path = "../chain-registry" }

clap = { version = "3.2", features = ["cargo"] }
clap_complete = "3.2"
Expand Down
Loading

0 comments on commit e529d25

Please sign in to comment.