diff --git a/guide/README.md b/guide/README.md index 41874d08ef..9b55366fed 100644 --- a/guide/README.md +++ b/guide/README.md @@ -11,7 +11,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.0.0-rc.0`. +Current version: `v1.0.0-rc.1`. The version of this guide is aligned with the [versioning of the ibc crates](../README.md). diff --git a/guide/src/SUMMARY.md b/guide/src/SUMMARY.md index 9e09ade5a2..c8ede7947b 100644 --- a/guide/src/SUMMARY.md +++ b/guide/src/SUMMARY.md @@ -1,6 +1,6 @@ # Summary -# Hermes (v1.0.0-rc.0) +# Hermes (v1.0.0-rc.1) --- - [Introduction](./index.md) diff --git a/guide/src/commands/global.md b/guide/src/commands/global.md index 81ec25fb2c..4357c8e319 100644 --- a/guide/src/commands/global.md +++ b/guide/src/commands/global.md @@ -3,7 +3,7 @@ Hermes accepts global options which affect all commands. ```shell -hermes v1.0.0-rc.0 +hermes v1.0.0-rc.1 Informal Systems Implementation of `hermes`, an IBC Relayer developed in Rust. diff --git a/guide/src/config.md b/guide/src/config.md index 5dd34cdc68..f19ad43972 100644 --- a/guide/src/config.md +++ b/guide/src/config.md @@ -25,7 +25,7 @@ hermes [--config CONFIG_FILE] COMMAND The configuration file must have one `global` section, and one `chains` section for each chain. > **Note:** As of 0.6.0, the Hermes configuration file is self-documented. -> Please read the configuration file [`config.toml`](https://github.com/informalsystems/ibc-rs/blob/v1.0.0-rc.0/config.toml) +> Please read the configuration file [`config.toml`](https://github.com/informalsystems/ibc-rs/blob/v1.0.0-rc.1/config.toml) > itself for the most up-to-date documentation of parameters. By default, Hermes will relay on all channels available between all the configured chains. @@ -36,7 +36,7 @@ For example, if there are only two chains configured, then Hermes will only rela i.e. the two chains will serve as a source for each other, and likewise as a destination for each other's relevant events. Hermes will ignore all events that pertain to chains which are unknown (ie. not present in config.toml). -To restrict relaying on specific channels, or uni-directionally, you can use [packet filtering policies](https://github.com/informalsystems/ibc-rs/blob/v1.0.0-rc.0/config.toml#L209-L231). +To restrict relaying on specific channels, or uni-directionally, you can use [packet filtering policies](https://github.com/informalsystems/ibc-rs/blob/v1.0.0-rc.1/config.toml#L209-L231). ## Adding private keys diff --git a/guide/src/index.md b/guide/src/index.md index df0cae5e79..10e60f051e 100644 --- a/guide/src/index.md +++ b/guide/src/index.md @@ -1,4 +1,4 @@ -# Hermes Guide (v1.0.0-rc.0) +# Hermes Guide (v1.0.0-rc.1) Hermes is a an open-source Rust implementation of a relayer for the diff --git a/guide/src/installation.md b/guide/src/installation.md index a98da3c9d7..4550706c3f 100644 --- a/guide/src/installation.md +++ b/guide/src/installation.md @@ -14,8 +14,8 @@ There are two main approaches for obtaining Hermes: Simply head to the GitHub [Releases][releases] page and download the latest version of Hermes binary matching your platform: -- MacOS: `hermes-v1.0.0-rc.0-x86_64-apple-darwin.tar.gz` (or .zip), -- Linux: `hermes-v1.0.0-rc.0-x86_64-unknown-linux-gnu.tar.gz` (or .zip). +- MacOS: `hermes-v1.0.0-rc.1-x86_64-apple-darwin.tar.gz` (or .zip), +- Linux: `hermes-v1.0.0-rc.1-x86_64-unknown-linux-gnu.tar.gz` (or .zip). The step-by-step instruction below should carry you through the whole process: @@ -47,7 +47,7 @@ hermes version ``` ``` -hermes v1.0.0-rc.0 +hermes v1.0.0-rc.1 ``` ## Install via Cargo @@ -59,7 +59,7 @@ Hermes is packaged in the `ibc-relayer-cli` Rust crate. To install the latest release of Hermes, run the following command in a terminal: ```shell -cargo install ibc-relayer-cli@1.0.0-rc.0 --bin hermes --locked +cargo install ibc-relayer-cli@1.0.0-rc.1 --bin hermes --locked ``` This will download and build the crate `ibc-relayer-cli`, and install the @@ -81,7 +81,7 @@ hermes version ``` ``` -hermes v1.0.0-rc.0 +hermes v1.0.0-rc.1 ``` ## Build from source @@ -103,10 +103,10 @@ cd ibc-rs Go to the [ibc-rs releases](https://github.com/informalsystems/ibc-rs/releases) page to see what is the most recent release. -Then checkout the release, for example if the most recent release is `v1.0.0-rc.0` then execute the command: +Then checkout the release, for example if the most recent release is `v1.0.0-rc.1` then execute the command: ```shell -git checkout v1.0.0-rc.0 +git checkout v1.0.0-rc.1 ``` ### Building with `cargo build` @@ -151,7 +151,7 @@ If you run the `hermes` without any additional parameters you should see the usa ``` ``` -hermes v1.0.0-rc.0 +hermes v1.0.0-rc.1 Informal Systems USAGE: diff --git a/guide/src/rest-api.md b/guide/src/rest-api.md index 4cddd2774c..91b114c974 100644 --- a/guide/src/rest-api.md +++ b/guide/src/rest-api.md @@ -39,7 +39,7 @@ as the version of the REST server itself (under the `ibc-relayer-rest` key). [ { "name": "ibc-relayer", - "version": "v1.0.0-rc.0" + "version": "v1.0.0-rc.1" }, { "name": "ibc-relayer-rest", diff --git a/relayer-cli/Cargo.toml b/relayer-cli/Cargo.toml index d29785936a..523ba52582 100644 --- a/relayer-cli/Cargo.toml +++ b/relayer-cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ibc-relayer-cli" -version = "1.0.0-rc.0" +version = "1.0.0-rc.1" edition = "2021" license = "Apache-2.0" readme = "README.md" diff --git a/tools/test-framework/Cargo.toml b/tools/test-framework/Cargo.toml index 2a7003a61c..565053e9cd 100644 --- a/tools/test-framework/Cargo.toml +++ b/tools/test-framework/Cargo.toml @@ -16,7 +16,7 @@ description = """ [dependencies] ibc = { version = "=0.16.0", path = "../../modules" } ibc-relayer = { version = "=0.16.0", path = "../../relayer" } -ibc-relayer-cli = { version = "=1.0.0-rc.0", path = "../../relayer-cli" } +ibc-relayer-cli = { version = "=1.0.0-rc.1", path = "../../relayer-cli" } ibc-proto = { version = "=0.19.0", path = "../../proto" } tendermint = { version = "=0.23.8" } tendermint-rpc = { version = "=0.23.8", features = ["http-client", "websocket-client"] }