From f920edf3c7d70738ab005e0073479a60286b70bc Mon Sep 17 00:00:00 2001 From: Svyatoslav Nikolsky Date: Mon, 20 May 2024 11:24:19 +0300 Subject: [PATCH] Relay v1.6.0: added support for BHP 1_002_002 (#2999) * bump BHP version * bump relay version --- Cargo.lock | 2 +- relay-clients/client-bridge-hub-polkadot/src/lib.rs | 2 +- substrate-relay/Cargo.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 5b5fb418f2..efd04c6aec 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -9312,7 +9312,7 @@ dependencies = [ [[package]] name = "substrate-relay" -version = "1.5.1" +version = "1.6.0" dependencies = [ "anyhow", "async-std", diff --git a/relay-clients/client-bridge-hub-polkadot/src/lib.rs b/relay-clients/client-bridge-hub-polkadot/src/lib.rs index 60dfde3713..12d151daf2 100644 --- a/relay-clients/client-bridge-hub-polkadot/src/lib.rs +++ b/relay-clients/client-bridge-hub-polkadot/src/lib.rs @@ -129,5 +129,5 @@ impl ChainWithMessages for BridgeHubPolkadot { impl ChainWithRuntimeVersion for BridgeHubPolkadot { const RUNTIME_VERSION: Option = - Some(SimpleRuntimeVersion { spec_version: 1_002_000, transaction_version: 3 }); + Some(SimpleRuntimeVersion { spec_version: 1_002_002, transaction_version: 3 }); } diff --git a/substrate-relay/Cargo.toml b/substrate-relay/Cargo.toml index 481a50c9bc..6e7ba3fc4f 100644 --- a/substrate-relay/Cargo.toml +++ b/substrate-relay/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "substrate-relay" -version = "1.5.1" +version = "1.6.0" authors.workspace = true edition.workspace = true license = "GPL-3.0-or-later WITH Classpath-exception-2.0"