Skip to content

Commit

Permalink
Bump crates to 0.17.0 and ibc-proto to 0.19.1
Browse files Browse the repository at this point in the history
  • Loading branch information
romac committed Jul 27, 2022
1 parent 2310d4e commit 0ad3162
Show file tree
Hide file tree
Showing 11 changed files with 33 additions and 33 deletions.
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 modules/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ibc"
version = "0.16.0"
version = "0.17.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.19.0", path = "../proto", default-features = false }
ibc-proto = { version = "0.19.1", path = "../proto", default-features = false }
ics23 = { version = "=0.8.0-alpha", 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.19.0"
version = "0.19.1"
authors = ["Informal Systems <hello@informal.systems>"]
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.19.0")]
#![doc(html_root_url = "https://docs.rs/ibc-proto/0.19.1")]

pub mod google;

Expand Down
10 changes: 5 additions & 5 deletions relayer-cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,11 @@ telemetry = ["ibc-relayer/telemetry", "ibc-telemetry"]
rest-server = ["ibc-relayer-rest"]

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

clap = { version = "3.2", features = ["cargo"] }
clap_complete = "3.2"
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.16.0"
version = "0.17.0"
authors = ["Informal Systems <hello@informal.systems>"]
edition = "2021"
license = "Apache-2.0"
Expand All @@ -14,8 +14,8 @@ description = """
"""

[dependencies]
ibc = { version = "0.16.0", path = "../modules" }
ibc-relayer = { version = "0.16.0", path = "../relayer" }
ibc = { version = "0.17.0", path = "../modules" }
ibc-relayer = { version = "0.17.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.16.0".to_string(),
version: "0.17.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.16.0"
version = "0.17.0"
edition = "2021"
license = "Apache-2.0"
readme = "README.md"
Expand All @@ -21,9 +21,9 @@ profiling = []
telemetry = ["ibc-telemetry"]

[dependencies]
ibc = { version = "0.16.0", path = "../modules" }
ibc-proto = { version = "0.19.0", path = "../proto" }
ibc-telemetry = { version = "0.16.0", path = "../telemetry", optional = true }
ibc = { version = "0.17.0", path = "../modules" }
ibc-proto = { version = "0.19.1", path = "../proto" }
ibc-telemetry = { version = "0.17.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.8"

[dev-dependencies]
ibc = { version = "0.16.0", path = "../modules", features = ["mocks"] }
ibc = { version = "0.17.0", path = "../modules", features = ["mocks"] }
serial_test = "0.8.0"
env_logger = "0.9.0"
tracing-subscriber = { version = "0.3.14", features = ["fmt", "env-filter", "json"] }
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.16.0"
version = "0.17.0"
edition = "2021"
license = "Apache-2.0"
readme = "README.md"
Expand All @@ -13,7 +13,7 @@ description = """
"""

[dependencies]
ibc = { version = "0.16.0", path = "../modules" }
ibc = { version = "0.17.0", path = "../modules" }

crossbeam-channel = "0.5.5"
once_cell = "1.13.0"
Expand Down
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.16.0"
version = "0.17.0"
edition = "2021"
license = "Apache-2.0"
readme = "README.md"
Expand Down
8 changes: 4 additions & 4 deletions 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.16.0"
version = "0.17.0"
edition = "2021"
license = "Apache-2.0"
readme = "README.md"
Expand All @@ -14,10 +14,10 @@ description = """
"""

[dependencies]
ibc = { version = "=0.16.0", path = "../../modules" }
ibc-relayer = { version = "=0.16.0", path = "../../relayer" }
ibc = { version = "=0.17.0", path = "../../modules" }
ibc-relayer = { version = "=0.17.0", path = "../../relayer" }
ibc-relayer-cli = { version = "=1.0.0-rc.1", path = "../../relayer-cli" }
ibc-proto = { version = "=0.19.0", path = "../../proto" }
ibc-proto = { version = "=0.19.1", path = "../../proto" }
tendermint = { version = "=0.23.8" }
tendermint-rpc = { version = "=0.23.8", features = ["http-client", "websocket-client"] }

Expand Down

0 comments on commit 0ad3162

Please sign in to comment.