Skip to content

Commit

Permalink
Update release to v1.10.5
Browse files Browse the repository at this point in the history
  • Loading branch information
ljoss17 authored and romac committed Dec 13, 2024
1 parent 0174837 commit e6709d4
Show file tree
Hide file tree
Showing 20 changed files with 37 additions and 42 deletions.
3 changes: 3 additions & 0 deletions .changelog/v1.10.5/summary.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
*December 13rd, 2024*

This release addresses an issue with pull-mode event collection. The functionality has been enhanced to accurately retrieve events from `finalized_block_events`, ensuring more reliable event processing.
3 changes: 0 additions & 3 deletions .changelog/v1.11.0/summary.md

This file was deleted.

11 changes: 3 additions & 8 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,10 @@
# CHANGELOG

## v1.11.0
## v1.10.5

*December 3rd, 2024*
*December 13rd, 2024*

This release introduces support for the first Non-SDK chain with Namada compatibility. To relay for Namada, ensure the chain type in the configuration is set to `Namada`. Additionally, pull-mode event collection now correctly retrieves events from `finalized_block_events`.

### FEATURES

- Add support for relaying between Namada and CosmosSDK-based chains.
([\#3705](https://github.com/informalsystems/hermes/issues/3705))
This release addresses an issue with pull-mode event collection. The functionality has been enhanced to accurately retrieve events from `finalized_block_events`, ensuring more reliable event processing.

### IMPROVEMENTS

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.

18 changes: 9 additions & 9 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,14 @@ exclude = [

[workspace.dependencies]
# Hermes dependencies
ibc-relayer-cli = { version = "1.11.0", path = "crates/relayer-cli" }
ibc-relayer = { version = "0.30.0", path = "crates/relayer" }
ibc-relayer-rest = { version = "0.30.0", path = "crates/relayer-rest" }
ibc-relayer-types = { version = "0.30.0", path = "crates/relayer-types" }
ibc-chain-registry = { version = "0.30.0", path = "crates/chain-registry" }
ibc-telemetry = { version = "0.30.0", path = "crates/telemetry" }
ibc-test-framework = { version = "0.30.0", path = "tools/test-framework" }
ibc-integration-test = { version = "0.30.0", path = "tools/integration-test" }
ibc-relayer-cli = { version = "1.10.5", path = "crates/relayer-cli" }
ibc-relayer = { version = "0.29.5", path = "crates/relayer" }
ibc-relayer-rest = { version = "0.29.5", path = "crates/relayer-rest" }
ibc-relayer-types = { version = "0.29.5", path = "crates/relayer-types" }
ibc-chain-registry = { version = "0.29.5", path = "crates/chain-registry" }
ibc-telemetry = { version = "0.29.5", path = "crates/telemetry" }
ibc-test-framework = { version = "0.29.5", path = "tools/test-framework" }
ibc-integration-test = { version = "0.29.5", path = "tools/integration-test" }

# IBC dependencies
ibc-proto = "0.51.0"
Expand Down Expand Up @@ -124,7 +124,7 @@ tonic = "0.12"
tracing = { version = "0.1.36", default-features = false }
tracing-subscriber = "0.3.14"
uint = "0.9"
uuid = "1.11.0"
uuid = "1.10.5"

[profile.release]
overflow-checks = true
Expand Down
2 changes: 1 addition & 1 deletion 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.30.0"
version = "0.29.5"
edition = "2021"
license = "Apache-2.0"
keywords = ["cosmos", "ibc", "relayer", "chain", "registry"]
Expand Down
2 changes: 1 addition & 1 deletion 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.11.0"
version = "1.10.5"
edition = "2021"
license = "Apache-2.0"
readme = "README.md"
Expand Down
2 changes: 1 addition & 1 deletion crates/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.30.0"
version = "0.29.5"
authors = ["Informal Systems <[email protected]>"]
edition = "2021"
license = "Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion crates/relayer-rest/tests/mock.rs
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ async fn version() {

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

let result: JsonResult<_, ()> = JsonResult::Success(vec![version.clone(), rest_api_version]);
Expand Down
2 changes: 1 addition & 1 deletion crates/relayer-types/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ibc-relayer-types"
version = "0.30.0"
version = "0.29.5"
edition = "2021"
license = "Apache-2.0"
readme = "README.md"
Expand Down
2 changes: 1 addition & 1 deletion crates/relayer/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ibc-relayer"
version = "0.30.0"
version = "0.29.5"
edition = "2021"
license = "Apache-2.0"
readme = "README.md"
Expand Down
4 changes: 2 additions & 2 deletions crates/relayer/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
//!
//! For the IBC relayer binary, please see [Hermes] (`ibc-relayer-cli` crate).
//!
//! [Hermes]: https://docs.rs/ibc-relayer-cli/1.11.0/
//! [Hermes]: https://docs.rs/ibc-relayer-cli/1.10.5/
extern crate alloc;

Expand Down Expand Up @@ -48,4 +48,4 @@ pub mod upgrade_chain;
pub mod util;
pub mod worker;

pub const HERMES_VERSION: &str = "1.11.0";
pub const HERMES_VERSION: &str = "1.10.5";
2 changes: 1 addition & 1 deletion crates/telemetry/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ibc-telemetry"
version = "0.30.0"
version = "0.29.5"
edition = "2021"
license = "Apache-2.0"
readme = "README.md"
Expand Down
2 changes: 1 addition & 1 deletion guide/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ mdBook is a utility to create modern online books from Markdown files.
This guide should be permanently deployed at its latest stable version at
[hermes.informal.systems](https://hermes.informal.systems).

Current version: `v1.11.0`.
Current version: `v1.10.5`.

The version of this guide is aligned with the [versioning of the ibc crates](../README.md).

Expand Down
2 changes: 1 addition & 1 deletion guide/src/SUMMARY.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Summary

# Hermes v1.11.0
# Hermes v1.10.5

---
- [Introduction](./index.md)
Expand Down
2 changes: 1 addition & 1 deletion guide/src/templates/hermes-version.md
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v1.11.0
v1.10.5
2 changes: 1 addition & 1 deletion tools/integration-test/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ibc-integration-test"
version = "0.30.0"
version = "0.29.5"
edition = "2021"
rust-version = "1.79.0"
license = "Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion tools/test-framework/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ibc-test-framework"
version = "0.30.0"
version = "0.29.5"
edition = "2021"
license = "Apache-2.0"
readme = "README.md"
Expand Down

0 comments on commit e6709d4

Please sign in to comment.