From 74d46e62642266903e84123e2db33ee50645be6c Mon Sep 17 00:00:00 2001 From: cgeek <cem.moreau@gmail.com> Date: Sun, 19 Nov 2023 08:20:17 +0100 Subject: [PATCH] feat: bump Runtime to 700 + client to 0.7.0 --- Cargo.toml | 2 +- runtime/g1/src/lib.rs | 2 +- runtime/gdev/src/lib.rs | 2 +- runtime/gtest/src/lib.rs | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index f521a43fc..9142087a3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -7,7 +7,7 @@ homepage = 'https://duniter.org' license = 'AGPL-3.0' name = 'duniter' repository = 'https://git.duniter.org/nodes/rust/duniter-v2s' -version = '0.3.0' +version = '0.7.0' [package.metadata.docs.rs] targets = ['x86_64-unknown-linux-gnu'] diff --git a/runtime/g1/src/lib.rs b/runtime/g1/src/lib.rs index d4315c779..d3358671c 100644 --- a/runtime/g1/src/lib.rs +++ b/runtime/g1/src/lib.rs @@ -92,7 +92,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion { // `spec_version`, and `authoring_version` are the same between Wasm and native. // This value is set to 100 to notify Polkadot-JS App (https://polkadot.js.org/apps) to use // the compatible custom types. - spec_version: 600, + spec_version: 700, impl_version: 1, apis: RUNTIME_API_VERSIONS, transaction_version: 1, diff --git a/runtime/gdev/src/lib.rs b/runtime/gdev/src/lib.rs index d7ccbcb21..6b369df1a 100644 --- a/runtime/gdev/src/lib.rs +++ b/runtime/gdev/src/lib.rs @@ -95,7 +95,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion { // `spec_version`, and `authoring_version` are the same between Wasm and native. // This value is set to 100 to notify Polkadot-JS App (https://polkadot.js.org/apps) to use // the compatible custom types. - spec_version: 600, + spec_version: 700, impl_version: 1, apis: RUNTIME_API_VERSIONS, transaction_version: 1, diff --git a/runtime/gtest/src/lib.rs b/runtime/gtest/src/lib.rs index 7759470e0..385b9968a 100644 --- a/runtime/gtest/src/lib.rs +++ b/runtime/gtest/src/lib.rs @@ -92,7 +92,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion { // `spec_version`, and `authoring_version` are the same between Wasm and native. // This value is set to 100 to notify Polkadot-JS App (https://polkadot.js.org/apps) to use // the compatible custom types. - spec_version: 600, + spec_version: 700, impl_version: 1, apis: RUNTIME_API_VERSIONS, transaction_version: 1, -- GitLab