From 0d3a34efe32b546802275585f3b5b41f55498e0b Mon Sep 17 00:00:00 2001 From: Adam Dossa Date: Thu, 15 Aug 2024 14:28:08 +0100 Subject: [PATCH] Bump versions for 7.0.0 release (#1701) * Bump versions * Update Cargo.lock --- Cargo.lock | 4 ++-- Cargo.toml | 2 +- pallets/runtime/develop/src/runtime.rs | 4 ++-- pallets/runtime/mainnet/src/runtime.rs | 4 ++-- pallets/runtime/testnet/src/runtime.rs | 4 ++-- 5 files changed, 9 insertions(+), 9 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 3fd88bb9b..120e4a2b8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -6523,7 +6523,7 @@ dependencies = [ [[package]] name = "polymesh" -version = "6.3.3" +version = "7.0.0" dependencies = [ "clap 4.4.11", "frame-benchmarking", @@ -12625,4 +12625,4 @@ checksum = "9e16efa8a874a0481a574084d34cc26fdb3b99627480f785888deb6386506656" dependencies = [ "cc", "pkg-config", -] \ No newline at end of file +] diff --git a/Cargo.toml b/Cargo.toml index e83196beb..a2af65a62 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "polymesh" -version = "6.3.3" +version = "7.0.0" authors = ["PolymeshAssociation"] build = "build.rs" edition = "2021" diff --git a/pallets/runtime/develop/src/runtime.rs b/pallets/runtime/develop/src/runtime.rs index b1ad18b93..2ba018cd5 100644 --- a/pallets/runtime/develop/src/runtime.rs +++ b/pallets/runtime/develop/src/runtime.rs @@ -57,10 +57,10 @@ pub const VERSION: RuntimeVersion = RuntimeVersion { authoring_version: 1, // `spec_version: aaa_bbb_ccd` should match node version v`aaa.bbb.cc` // N.B. `d` is unpinned from the binary version - spec_version: 6_003_030, + spec_version: 7_000_000, impl_version: 0, apis: RUNTIME_API_VERSIONS, - transaction_version: 4, + transaction_version: 7, state_version: 1, }; diff --git a/pallets/runtime/mainnet/src/runtime.rs b/pallets/runtime/mainnet/src/runtime.rs index fc2a2b25f..abf01f512 100644 --- a/pallets/runtime/mainnet/src/runtime.rs +++ b/pallets/runtime/mainnet/src/runtime.rs @@ -53,10 +53,10 @@ pub const VERSION: RuntimeVersion = RuntimeVersion { authoring_version: 1, // `spec_version: aaa_bbb_ccd` should match node version v`aaa.bbb.cc` // N.B. `d` is unpinned from the binary version - spec_version: 6_003_030, + spec_version: 7_000_000, impl_version: 0, apis: RUNTIME_API_VERSIONS, - transaction_version: 4, + transaction_version: 7, state_version: 1, }; diff --git a/pallets/runtime/testnet/src/runtime.rs b/pallets/runtime/testnet/src/runtime.rs index da9efcef6..2f3dfa133 100644 --- a/pallets/runtime/testnet/src/runtime.rs +++ b/pallets/runtime/testnet/src/runtime.rs @@ -55,10 +55,10 @@ pub const VERSION: RuntimeVersion = RuntimeVersion { authoring_version: 1, // `spec_version: aaa_bbb_ccd` should match node version v`aaa.bbb.cc` // N.B. `d` is unpinned from the binary version - spec_version: 6_003_030, + spec_version: 7_000_000, impl_version: 0, apis: RUNTIME_API_VERSIONS, - transaction_version: 4, + transaction_version: 7, state_version: 1, };