From 780b5735458164ef60183624dbb0c414fc42ef4f Mon Sep 17 00:00:00 2001 From: Jamie Date: Thu, 27 Jun 2024 00:29:40 +0800 Subject: [PATCH 1/2] Release v4.7.1 Signed-off-by: Jamie --- Cargo.lock | 42 ++++++++++++++++++------------------- Cargo.toml | 2 +- runtime/calamari/src/lib.rs | 2 +- runtime/manta/src/lib.rs | 2 +- 4 files changed, 24 insertions(+), 24 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 7c6065e56..d81214a19 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1521,7 +1521,7 @@ dependencies = [ [[package]] name = "calamari-runtime" -version = "4.7.0" +version = "4.7.1" dependencies = [ "async-backing-primitives", "calamari-vesting", @@ -1630,7 +1630,7 @@ dependencies = [ [[package]] name = "calamari-vesting" -version = "4.7.0" +version = "4.7.1" dependencies = [ "chrono", "frame-benchmarking", @@ -5030,7 +5030,7 @@ dependencies = [ [[package]] name = "integration-tests" -version = "4.7.0" +version = "4.7.1" dependencies = [ "calamari-runtime", "calamari-vesting", @@ -6111,7 +6111,7 @@ dependencies = [ [[package]] name = "manta" -version = "4.7.0" +version = "4.7.1" dependencies = [ "async-backing-primitives", "async-trait", @@ -6230,7 +6230,7 @@ dependencies = [ [[package]] name = "manta-collator-selection" -version = "4.7.0" +version = "4.7.1" dependencies = [ "frame-benchmarking", "frame-support", @@ -6317,7 +6317,7 @@ dependencies = [ [[package]] name = "manta-primitives" -version = "4.7.0" +version = "4.7.1" dependencies = [ "frame-benchmarking", "frame-support", @@ -6338,7 +6338,7 @@ dependencies = [ [[package]] name = "manta-runtime" -version = "4.7.0" +version = "4.7.1" dependencies = [ "async-backing-primitives", "csv", @@ -7426,7 +7426,7 @@ checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39" [[package]] name = "pallet-asset-manager" -version = "4.7.0" +version = "4.7.1" dependencies = [ "frame-benchmarking", "frame-support", @@ -7866,7 +7866,7 @@ dependencies = [ [[package]] name = "pallet-farming" -version = "4.7.0" +version = "4.7.1" dependencies = [ "frame-benchmarking", "frame-support", @@ -7890,7 +7890,7 @@ dependencies = [ [[package]] name = "pallet-farming-rpc-api" -version = "4.7.0" +version = "4.7.1" dependencies = [ "jsonrpsee", "manta-primitives", @@ -7906,7 +7906,7 @@ dependencies = [ [[package]] name = "pallet-farming-rpc-runtime-api" -version = "4.7.0" +version = "4.7.1" dependencies = [ "manta-primitives", "parity-scale-codec", @@ -8012,7 +8012,7 @@ dependencies = [ [[package]] name = "pallet-lottery" -version = "4.7.0" +version = "4.7.1" dependencies = [ "calamari-runtime", "frame-benchmarking", @@ -8053,7 +8053,7 @@ dependencies = [ [[package]] name = "pallet-manta-pay" -version = "4.7.0" +version = "4.7.1" dependencies = [ "anyhow", "base64 0.21.5", @@ -8088,7 +8088,7 @@ dependencies = [ [[package]] name = "pallet-manta-sbt" -version = "4.7.0" +version = "4.7.1" dependencies = [ "anyhow", "base64 0.21.5", @@ -8128,7 +8128,7 @@ dependencies = [ [[package]] name = "pallet-manta-support" -version = "4.7.0" +version = "4.7.1" dependencies = [ "anyhow", "base64 0.21.5", @@ -8223,7 +8223,7 @@ dependencies = [ [[package]] name = "pallet-name-service" -version = "4.7.0" +version = "4.7.1" dependencies = [ "frame-benchmarking", "frame-support", @@ -8349,7 +8349,7 @@ dependencies = [ [[package]] name = "pallet-parachain-staking" -version = "4.7.0" +version = "4.7.1" dependencies = [ "frame-benchmarking", "frame-support", @@ -8406,7 +8406,7 @@ dependencies = [ [[package]] name = "pallet-randomness" -version = "4.7.0" +version = "4.7.1" dependencies = [ "derive_more", "frame-benchmarking", @@ -8759,7 +8759,7 @@ dependencies = [ [[package]] name = "pallet-tx-pause" -version = "4.7.0" +version = "4.7.1" dependencies = [ "frame-benchmarking", "frame-support", @@ -11233,7 +11233,7 @@ dependencies = [ [[package]] name = "runtime-common" -version = "4.7.0" +version = "4.7.1" dependencies = [ "cumulus-pallet-dmp-queue", "cumulus-pallet-parachain-system", @@ -13017,7 +13017,7 @@ dependencies = [ [[package]] name = "session-key-primitives" -version = "4.7.0" +version = "4.7.1" dependencies = [ "async-trait", "manta-primitives", diff --git a/Cargo.toml b/Cargo.toml index bc50b9aa0..b1b557844 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -5,7 +5,7 @@ homepage = 'https://manta.network' license = 'GPL-3.0' repository = 'https://github.com/Manta-Network/Manta/' rust-version = '1.74' -version = '4.7.0' +version = '4.7.1' [workspace] members = [ diff --git a/runtime/calamari/src/lib.rs b/runtime/calamari/src/lib.rs index cbab2b942..7f31ed911 100644 --- a/runtime/calamari/src/lib.rs +++ b/runtime/calamari/src/lib.rs @@ -143,7 +143,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion { spec_name: create_runtime_str!("calamari"), impl_name: create_runtime_str!("calamari"), authoring_version: 2, - spec_version: 4700, + spec_version: 4710, impl_version: 1, apis: RUNTIME_API_VERSIONS, transaction_version: 19, diff --git a/runtime/manta/src/lib.rs b/runtime/manta/src/lib.rs index 6763ec5e2..540fe3bb3 100644 --- a/runtime/manta/src/lib.rs +++ b/runtime/manta/src/lib.rs @@ -146,7 +146,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion { spec_name: create_runtime_str!("manta"), impl_name: create_runtime_str!("manta"), authoring_version: 1, - spec_version: 4700, + spec_version: 4710, impl_version: 1, apis: RUNTIME_API_VERSIONS, transaction_version: 8, From 3cb1d9f37c4a0bd302365fd875dd84add525b320 Mon Sep 17 00:00:00 2001 From: Charles Ferrell Date: Fri, 28 Jun 2024 08:44:25 -0400 Subject: [PATCH 2/2] bump tx version Signed-off-by: Charles Ferrell --- runtime/calamari/src/lib.rs | 2 +- runtime/manta/src/lib.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/runtime/calamari/src/lib.rs b/runtime/calamari/src/lib.rs index e734c55e5..eda0663d6 100644 --- a/runtime/calamari/src/lib.rs +++ b/runtime/calamari/src/lib.rs @@ -146,7 +146,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion { spec_version: 4710, impl_version: 1, apis: RUNTIME_API_VERSIONS, - transaction_version: 19, + transaction_version: 20, state_version: 0, }; diff --git a/runtime/manta/src/lib.rs b/runtime/manta/src/lib.rs index d80a5c79d..8e54f2f10 100644 --- a/runtime/manta/src/lib.rs +++ b/runtime/manta/src/lib.rs @@ -149,7 +149,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion { spec_version: 4710, impl_version: 1, apis: RUNTIME_API_VERSIONS, - transaction_version: 8, + transaction_version: 9, state_version: 1, };