From 9090491fc42e87c9db1a660585d29598aebf4838 Mon Sep 17 00:00:00 2001 From: Alessandro Siniscalchi Date: Wed, 21 Aug 2024 10:50:37 +0200 Subject: [PATCH 1/3] update versions --- Cargo.toml | 2 +- e2e-tests/tests/config.ts | 2 +- runtime/laos/src/lib.rs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index ccc65fea6..6f748f97e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ description = "The LAOS parachain node." repository = "https://github.com/freeverseio/laos.git" homepage = "https://www.laosfoundation.io" authors = ["Freeverse"] -version = "0.17.1" +version = "0.17.4" [workspace] resolver = "2" diff --git a/e2e-tests/tests/config.ts b/e2e-tests/tests/config.ts index 6adf87898..6c49b6635 100644 --- a/e2e-tests/tests/config.ts +++ b/e2e-tests/tests/config.ts @@ -6,7 +6,7 @@ import EvolutionCollectionFactory from "../build/contracts/EvolutionCollectionFa // Node config export const RUNTIME_SPEC_NAME = "laos"; -export const RUNTIME_SPEC_VERSION = 1701; +export const RUNTIME_SPEC_VERSION = 1704; export const RUNTIME_IMPL_VERSION = 0; export const RPC_PORT = 9999; diff --git a/runtime/laos/src/lib.rs b/runtime/laos/src/lib.rs index bc8678c1a..9524d81c6 100644 --- a/runtime/laos/src/lib.rs +++ b/runtime/laos/src/lib.rs @@ -84,7 +84,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion { spec_name: create_runtime_str!("laos"), impl_name: create_runtime_str!("laos"), authoring_version: 1, - spec_version: 1701, + spec_version: 1704, impl_version: 0, apis: apis::PUBLIC_RUNTIME_API_VERSIONS, transaction_version: 1, From df1a051d15291ce5d06688402f1e051f363d5f25 Mon Sep 17 00:00:00 2001 From: Alessandro Siniscalchi Date: Wed, 21 Aug 2024 11:06:22 +0200 Subject: [PATCH 2/3] update version inb cargo.lock --- Cargo.lock | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 8d0159f04..eacade51d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4980,7 +4980,7 @@ dependencies = [ [[package]] name = "laos" -version = "0.17.1" +version = "0.17.4" dependencies = [ "clap", "cumulus-client-cli", @@ -5067,7 +5067,7 @@ dependencies = [ [[package]] name = "laos-runtime" -version = "0.17.1" +version = "0.17.4" dependencies = [ "cumulus-pallet-aura-ext", "cumulus-pallet-dmp-queue", From ef1d635d5010c2c723cccb9665cf929659d50150 Mon Sep 17 00:00:00 2001 From: Alessandro Siniscalchi Date: Wed, 21 Aug 2024 11:10:02 +0200 Subject: [PATCH 3/3] try to fix try-runtime --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index f5cee46c1..d65d8de8c 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -99,7 +99,7 @@ jobs: cargo build --release --locked --package laos --features=try-runtime - name: Try Runtime for Laos Omega run: | - RUST_LOG=try-runtime ./target/release/laos try-runtime --runtime ./target/release/wbuild/laos-runtime/laos_runtime.wasm on-runtime-upgrade --checks=pre-and-post live --uri ws://174.138.104.13:9944 + RUST_LOG=try-runtime ./target/release/laos try-runtime --runtime ./target/release/wbuild/laos-runtime/laos_runtime.wasm on-runtime-upgrade --checks=pre-and-post live --uri ws://159.223.241.51:9944 e2e-tests: runs-on: