From fa08ceceb5dd5e1ae7e00a97ef57c464aa00a0ea Mon Sep 17 00:00:00 2001 From: Elden Young <59600396+ytqaljn@users.noreply.github.com> Date: Mon, 5 Aug 2024 16:50:30 +0800 Subject: [PATCH] update version (#388) --- Cargo.lock | 4 ++-- standalone/chain/node/Cargo.toml | 2 +- standalone/chain/runtime/Cargo.toml | 2 +- standalone/chain/runtime/src/lib.rs | 4 ++-- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 0b9bef07..419c6f19 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1558,7 +1558,7 @@ dependencies = [ [[package]] name = "cess-node" -version = "0.7.7" +version = "0.7.8-Venus" dependencies = [ "array-bytes 6.2.3", "async-trait", @@ -1662,7 +1662,7 @@ dependencies = [ [[package]] name = "cess-node-runtime" -version = "0.8.0" +version = "0.8.1" dependencies = [ "ces-pallet-mq", "ces-pallet-mq-runtime-api", diff --git a/standalone/chain/node/Cargo.toml b/standalone/chain/node/Cargo.toml index d3349db6..d15f0046 100644 --- a/standalone/chain/node/Cargo.toml +++ b/standalone/chain/node/Cargo.toml @@ -6,7 +6,7 @@ edition = '2021' license = 'Unlicense' name = 'cess-node' repository = 'https://github.com/CESSProject/cess' -version = '0.7.7' +version = '0.7.8-Venus' [package.metadata.docs.rs] targets = ["x86_64-unknown-linux-gnu"] diff --git a/standalone/chain/runtime/Cargo.toml b/standalone/chain/runtime/Cargo.toml index 50a847cc..15bc9ecc 100644 --- a/standalone/chain/runtime/Cargo.toml +++ b/standalone/chain/runtime/Cargo.toml @@ -4,7 +4,7 @@ edition = "2021" license = "Unlicense" name = "cess-node-runtime" repository = "https://github.com/CESSProject/cess" -version = "0.8.0" +version = "0.8.1" [package.metadata.docs.rs] targets = ["x86_64-unknown-linux-gnu"] diff --git a/standalone/chain/runtime/src/lib.rs b/standalone/chain/runtime/src/lib.rs index 7382bcee..988edbbe 100644 --- a/standalone/chain/runtime/src/lib.rs +++ b/standalone/chain/runtime/src/lib.rs @@ -136,7 +136,7 @@ pub fn wasm_binary_unwrap() -> &'static [u8] { ) } -/// Runtime version. +/// Runtime version. #[sp_version::runtime_version] pub const VERSION: RuntimeVersion = RuntimeVersion { spec_name: create_runtime_str!("cess-node"), @@ -146,7 +146,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion { // and set impl_version to 0. If only runtime // implementation changes and behavior does not, then leave spec_version as // is and increment impl_version. - spec_version: 107, + spec_version: 108, impl_version: 0, apis: RUNTIME_API_VERSIONS, transaction_version: 1,