Skip to content

Commit

Permalink
Bump crates to v0.14.0 and ibc-proto to v0.17.1
Browse files Browse the repository at this point in the history
  • Loading branch information
romac committed Apr 26, 2022
1 parent dee7489 commit b42782d
Show file tree
Hide file tree
Showing 18 changed files with 40 additions and 40 deletions.
2 changes: 1 addition & 1 deletion guide/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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: `0.13.0`.
Current version: `0.14.0`.

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 (v0.13.0)
# Hermes (v0.14.0)

---
- [Introduction](./index.md)
Expand Down
2 changes: 1 addition & 1 deletion guide/src/commands/global.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Hermes accepts global options which affect all commands.

```shell
hermes 0.13.0
hermes 0.14.0
Informal Systems <[email protected]>
Implementation of `hermes`, an IBC Relayer developed in Rust.

Expand Down
4 changes: 2 additions & 2 deletions guide/src/config.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ hermes [-c 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/v0.13.0/config.toml)
> Please read the configuration file [`config.toml`](https://github.com/informalsystems/ibc-rs/blob/v0.14.0/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.
Expand All @@ -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/v0.13.0/config.toml#L207-L224).
To restrict relaying on specific channels, or uni-directionally, you can use [packet filtering policies](https://github.com/informalsystems/ibc-rs/blob/v0.14.0/config.toml#L207-L224).

## Adding private keys

Expand Down
2 changes: 1 addition & 1 deletion guide/src/index.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Hermes Guide (v0.13.0)
# Hermes Guide (v0.14.0)


Hermes is a an open-source Rust implementation of a relayer for the
Expand Down
14 changes: 7 additions & 7 deletions guide/src/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -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-v0.13.0-x86_64-apple-darwin.tar.gz` (or .zip),
- Linux: `hermes-v0.13.0-x86_64-unknown-linux-gnu.tar.gz` (or .zip).
- MacOS: `hermes-v0.14.0-x86_64-apple-darwin.tar.gz` (or .zip),
- Linux: `hermes-v0.14.0-x86_64-unknown-linux-gnu.tar.gz` (or .zip).

The step-by-step instruction below should carry you through the whole process:

Expand Down Expand Up @@ -47,7 +47,7 @@ hermes version
```

```
hermes 0.13.0
hermes 0.14.0
```

## Install via Cargo
Expand Down Expand Up @@ -81,7 +81,7 @@ hermes version
```
```
hermes 0.13.0
hermes 0.14.0
```

## Build from source
Expand All @@ -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 `v0.13.0` then execute the command:
Then checkout the release, for example if the most recent release is `v0.14.0` then execute the command:

```shell
git checkout v0.13.0
git checkout v0.14.0
```

### Building with `cargo build`
Expand Down Expand Up @@ -151,7 +151,7 @@ If you run the `hermes` without any additional parameters you should see the usa
```

```
hermes 0.13.0
hermes 0.14.0
Informal Systems <[email protected]>
USAGE:
Expand Down
2 changes: 1 addition & 1 deletion guide/src/rest-api.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ as the version of the REST server itself (under the `ibc-relayer-rest` key).
[
{
"name": "ibc-relayer",
"version": "0.13.0"
"version": "0.14.0"
},
{
"name": "ibc-relayer-rest",
Expand Down
2 changes: 1 addition & 1 deletion guide/src/tutorials/local-chains/start.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ To this end, clone the `ibc-rs` repository and check out the current version:
```bash
git clone [email protected]:informalsystems/ibc-rs.git
cd ibc-rs
git checkout v0.13.0
git checkout v0.14.0
```

### Stop existing `gaiad` processes
Expand Down
4 changes: 2 additions & 2 deletions modules/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ibc"
version = "0.13.0"
version = "0.14.0"
edition = "2021"
license = "Apache-2.0"
readme = "README.md"
Expand All @@ -27,7 +27,7 @@ mocks = ["tendermint-testgen", "clock", "std"]

[dependencies]
# Proto definitions for all IBC-related interfaces, e.g., connections or channels.
ibc-proto = { version = "0.17.0", path = "../proto", default-features = false }
ibc-proto = { version = "0.17.1", path = "../proto", default-features = false }
ics23 = { version = "0.7.0", default-features = false }
time = { version = "0.3", default-features = false }
serde_derive = { version = "1.0.104", default-features = false }
Expand Down
2 changes: 1 addition & 1 deletion proto/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ibc-proto"
version = "0.17.0"
version = "0.17.1"
authors = ["Informal Systems <[email protected]>"]
edition = "2021"
license = "Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion proto/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
#![allow(clippy::large_enum_variant)]
#![allow(rustdoc::bare_urls)]
#![forbid(unsafe_code)]
#![doc(html_root_url = "https://docs.rs/ibc-proto/0.17.0")]
#![doc(html_root_url = "https://docs.rs/ibc-proto/0.17.1")]

pub mod google;

Expand Down
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.13.0"
version = "0.14.0"
edition = "2021"
license = "Apache-2.0"
readme = "README.md"
Expand All @@ -26,11 +26,11 @@ telemetry = ["ibc-relayer/telemetry", "ibc-telemetry"]
rest-server = ["ibc-relayer-rest"]

[dependencies]
ibc = { version = "0.13.0", path = "../modules", features = ["std", "clock"] }
ibc-relayer = { version = "0.13.0", path = "../relayer" }
ibc-proto = { version = "0.17.0", path = "../proto" }
ibc-telemetry = { version = "0.13.0", path = "../telemetry", optional = true }
ibc-relayer-rest = { version = "0.13.0", path = "../relayer-rest", optional = true }
ibc = { version = "0.14.0", path = "../modules", features = ["std", "clock"] }
ibc-relayer = { version = "0.14.0", path = "../relayer" }
ibc-proto = { version = "0.17.1", path = "../proto" }
ibc-telemetry = { version = "0.14.0", path = "../telemetry", optional = true }
ibc-relayer-rest = { version = "0.14.0", path = "../relayer-rest", optional = true }

clap = { version = "3.1", features = ["cargo"] }
clap_complete = "3.1"
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.13.0"
version = "0.14.0"
authors = ["Informal Systems <[email protected]>"]
edition = "2021"
license = "Apache-2.0"
Expand All @@ -14,8 +14,8 @@ description = """
"""

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

crossbeam-channel = "0.5"
rouille = "3.5"
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.13.0".to_string(),
version: "0.14.0".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.13.0"
version = "0.14.0"
edition = "2021"
license = "Apache-2.0"
readme = "README.md"
Expand All @@ -21,9 +21,9 @@ profiling = []
telemetry = ["ibc-telemetry"]

[dependencies]
ibc = { version = "0.13.0", path = "../modules" }
ibc-proto = { version = "0.17.0", path = "../proto" }
ibc-telemetry = { version = "0.13.0", path = "../telemetry", optional = true }
ibc = { version = "0.14.0", path = "../modules" }
ibc-proto = { version = "0.17.1", path = "../proto" }
ibc-telemetry = { version = "0.14.0", path = "../telemetry", optional = true }

subtle-encoding = "0.5"
humantime-serde = "1.1.1"
Expand Down Expand Up @@ -93,7 +93,7 @@ default-features = false
version = "=0.23.6"

[dev-dependencies]
ibc = { version = "0.13.0", path = "../modules", features = ["mocks"] }
ibc = { version = "0.14.0", path = "../modules", features = ["mocks"] }
serial_test = "0.6.0"
env_logger = "0.9.0"
tracing-subscriber = { version = "0.3.11", features = ["fmt", "env-filter", "json"] }
Expand Down
8 changes: 4 additions & 4 deletions telemetry/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ibc-telemetry"
version = "0.13.0"
version = "0.14.0"
edition = "2021"
license = "Apache-2.0"
readme = "README.md"
Expand All @@ -13,11 +13,11 @@ description = """
"""

[dependencies]
ibc = { version = "0.13.0", path = "../modules" }
ibc = { version = "0.14.0", path = "../modules" }

crossbeam-channel = "0.5.4"
once_cell = "1.9.0"
opentelemetry = "0.17.0"
opentelemetry = "0.17.1"
opentelemetry-prometheus = "0.10.0"
prometheus = "0.13.0"
prometheus = "0.14.0"
rouille = "3.5.0"
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.13.0"
version = "0.14.0"
edition = "2021"
license = "Apache-2.0"
readme = "README.md"
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.13.0"
version = "0.14.0"
edition = "2021"
license = "Apache-2.0"
readme = "README.md"
Expand Down

0 comments on commit b42782d

Please sign in to comment.