From 237767ac911486b573fb3fd2ec7273bfbc9fc1f8 Mon Sep 17 00:00:00 2001 From: Morgan Adamiec Date: Fri, 16 Aug 2024 13:37:10 +0100 Subject: [PATCH] Apply plan --- Cargo.toml | 8 ++++---- cumulus/primitives/storage-weight-reclaim/Cargo.toml | 2 +- polkadot/runtime/parachains/Cargo.toml | 2 +- polkadot/xcm/Cargo.toml | 2 +- substrate/frame/system/Cargo.toml | 2 +- umbrella/Cargo.toml | 8 ++++---- 6 files changed, 12 insertions(+), 12 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 26f2bf08a3e0..728598f0719a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -692,7 +692,7 @@ cumulus-primitives-aura = { path = "cumulus/primitives/aura", default-features = cumulus-primitives-core = { path = "cumulus/primitives/core", default-features = false, version = "0.14.0" } cumulus-primitives-parachain-inherent = { path = "cumulus/primitives/parachain-inherent", default-features = false, version = "0.14.0" } cumulus-primitives-proof-size-hostfunction = { path = "cumulus/primitives/proof-size-hostfunction", default-features = false, version = "0.9.0" } -cumulus-primitives-storage-weight-reclaim = { path = "cumulus/primitives/storage-weight-reclaim", default-features = false, version = "6.0.1" } +cumulus-primitives-storage-weight-reclaim = { path = "cumulus/primitives/storage-weight-reclaim", default-features = false, version = "6.0.2" } cumulus-primitives-timestamp = { path = "cumulus/primitives/timestamp", default-features = false, version = "0.14.0" } cumulus-primitives-utility = { path = "cumulus/primitives/utility", default-features = false, version = "0.15.0" } cumulus-relay-chain-inprocess-interface = { path = "cumulus/client/relay-chain-inprocess-interface", default-features = false, version = "0.15.0" } @@ -752,7 +752,7 @@ frame-support-procedural = { path = "substrate/frame/support/procedural", defaul frame-support-procedural-tools = { path = "substrate/frame/support/procedural/tools", default-features = false, version = "13.0.0" } frame-support-procedural-tools-derive = { path = "substrate/frame/support/procedural/tools/derive", default-features = false, version = "12.0.0" } frame-support-test = { path = "substrate/frame/support/test" } -frame-system = { path = "substrate/frame/system", default-features = false, version = "36.0.1" } +frame-system = { path = "substrate/frame/system", default-features = false, version = "36.1.0" } frame-system-benchmarking = { path = "substrate/frame/system/benchmarking", default-features = false, version = "36.0.0" } frame-system-rpc-runtime-api = { path = "substrate/frame/system/rpc/runtime-api", default-features = false, version = "33.0.0" } frame-try-runtime = { path = "substrate/frame/try-runtime", default-features = false, version = "0.42.0" } @@ -1034,7 +1034,7 @@ polkadot-primitives-test-helpers = { path = "polkadot/primitives/test-helpers", polkadot-rpc = { path = "polkadot/rpc", default-features = false, version = "15.0.0" } polkadot-runtime-common = { path = "polkadot/runtime/common", default-features = false, version = "15.0.0" } polkadot-runtime-metrics = { path = "polkadot/runtime/metrics", default-features = false, version = "15.0.0" } -polkadot-runtime-parachains = { path = "polkadot/runtime/parachains", default-features = false, version = "15.0.2" } +polkadot-runtime-parachains = { path = "polkadot/runtime/parachains", default-features = false, version = "15.0.3" } polkadot-sdk = { path = "umbrella", default-features = false, version = "0.3.0" } polkadot-sdk-docs = { path = "docs/sdk", version = "0.1.0" } polkadot-service = { path = "polkadot/node/service", default-features = false, version = "15.0.0" } @@ -1330,7 +1330,7 @@ westend-runtime = { path = "polkadot/runtime/westend", version = "15.0.0" } westend-runtime-constants = { path = "polkadot/runtime/westend/constants", default-features = false, version = "15.0.0" } westend-system-emulated-network = { path = "cumulus/parachains/integration-tests/emulated/networks/westend-system", version = "0.1.0" } x25519-dalek = { version = "2.0" } -xcm = { path = "polkadot/xcm", default-features = false, package = "staging-xcm", version = "14.0.2" } +xcm = { path = "polkadot/xcm", default-features = false, package = "staging-xcm", version = "14.0.3" } xcm-builder = { path = "polkadot/xcm/xcm-builder", default-features = false, package = "staging-xcm-builder", version = "15.0.0" } xcm-docs = { path = "polkadot/xcm/docs", version = "0.1.0" } xcm-emulator = { path = "cumulus/xcm/xcm-emulator", default-features = false, version = "0.13.0" } diff --git a/cumulus/primitives/storage-weight-reclaim/Cargo.toml b/cumulus/primitives/storage-weight-reclaim/Cargo.toml index 789be850bd1b..4eadb121a12f 100644 --- a/cumulus/primitives/storage-weight-reclaim/Cargo.toml +++ b/cumulus/primitives/storage-weight-reclaim/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cumulus-primitives-storage-weight-reclaim" -version = "6.0.1" +version = "6.0.2" authors.workspace = true edition.workspace = true description = "Utilities to reclaim storage weight. (polkadot v1.14.0)" diff --git a/polkadot/runtime/parachains/Cargo.toml b/polkadot/runtime/parachains/Cargo.toml index f7358b27a9bf..d5956c2d53f5 100644 --- a/polkadot/runtime/parachains/Cargo.toml +++ b/polkadot/runtime/parachains/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "polkadot-runtime-parachains" -version = "15.0.2" +version = "15.0.3" description = "Relay Chain runtime code responsible for Parachains. (polkadot v1.14.0)" authors.workspace = true edition.workspace = true diff --git a/polkadot/xcm/Cargo.toml b/polkadot/xcm/Cargo.toml index d7be192bd603..f564a879bf42 100644 --- a/polkadot/xcm/Cargo.toml +++ b/polkadot/xcm/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "staging-xcm" description = "The basic XCM datastructures. (polkadot v1.14.0)" -version = "14.0.2" +version = "14.0.3" authors.workspace = true edition.workspace = true license.workspace = true diff --git a/substrate/frame/system/Cargo.toml b/substrate/frame/system/Cargo.toml index 1d92712dc946..e4e0dc0a7375 100644 --- a/substrate/frame/system/Cargo.toml +++ b/substrate/frame/system/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "frame-system" -version = "36.0.1" +version = "36.1.0" authors.workspace = true edition.workspace = true license = "Apache-2.0" diff --git a/umbrella/Cargo.toml b/umbrella/Cargo.toml index 39a40952388b..750f836f72a4 100644 --- a/umbrella/Cargo.toml +++ b/umbrella/Cargo.toml @@ -784,7 +784,7 @@ version = "0.9.0" path = "../cumulus/primitives/storage-weight-reclaim" default-features = false optional = true -version = "6.0.1" +version = "6.0.2" [dependencies.cumulus-primitives-timestamp] path = "../cumulus/primitives/timestamp" @@ -856,7 +856,7 @@ version = "12.0.0" path = "../substrate/frame/system" default-features = false optional = true -version = "36.0.1" +version = "36.1.0" [dependencies.frame-system-benchmarking] path = "../substrate/frame/system/benchmarking" @@ -1528,7 +1528,7 @@ version = "15.0.0" path = "../polkadot/runtime/parachains" default-features = false optional = true -version = "15.0.2" +version = "15.0.3" [dependencies.polkadot-sdk-frame] path = "../substrate/frame" @@ -1930,7 +1930,7 @@ version = "0.15.0" path = "../polkadot/xcm" default-features = false optional = true -version = "14.0.2" +version = "14.0.3" [dependencies.staging-xcm-builder] path = "../polkadot/xcm/xcm-builder"