From efefe3e2ceb36acd533c56beff33b96eae43140c Mon Sep 17 00:00:00 2001 From: Morgan Adamiec <morgan@parity.io> Date: Tue, 14 Jan 2025 12:51:18 +0000 Subject: [PATCH] Apply plan --- Cargo.lock | 6 +++--- Cargo.toml | 6 +++--- polkadot/xcm/Cargo.toml | 2 +- polkadot/xcm/procedural/Cargo.toml | 2 +- umbrella/Cargo.toml | 6 +++--- 5 files changed, 11 insertions(+), 11 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 95bd0063bf8..9b8019c205c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -15260,7 +15260,7 @@ dependencies = [ [[package]] name = "polkadot-sdk" -version = "0.10.0" +version = "0.10.1" dependencies = [ "asset-test-utils", "assets-common", @@ -23355,7 +23355,7 @@ version = "2.0.0" [[package]] name = "staging-xcm" -version = "15.0.0" +version = "15.0.1" dependencies = [ "array-bytes", "bounded-collections", @@ -26947,7 +26947,7 @@ dependencies = [ [[package]] name = "xcm-procedural" -version = "10.2.0" +version = "11.0.0" dependencies = [ "Inflector", "frame-support", diff --git a/Cargo.toml b/Cargo.toml index 569e0449414..354031a618e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1078,7 +1078,7 @@ polkadot-rpc = { path = "polkadot/rpc", default-features = false, version = "21. polkadot-runtime-common = { path = "polkadot/runtime/common", default-features = false, version = "18.0.0" } polkadot-runtime-metrics = { path = "polkadot/runtime/metrics", default-features = false, version = "18.0.0" } polkadot-runtime-parachains = { path = "polkadot/runtime/parachains", default-features = false, version = "18.0.0" } -polkadot-sdk = { path = "umbrella", default-features = false, version = "0.10.0" } +polkadot-sdk = { path = "umbrella", default-features = false, version = "0.10.1" } polkadot-sdk-docs = { path = "docs/sdk" } polkadot-service = { path = "polkadot/node/service", default-features = false, version = "21.0.0" } polkadot-statement-distribution = { path = "polkadot/node/network/statement-distribution", default-features = false, version = "20.0.0" } @@ -1376,12 +1376,12 @@ westend-runtime = { path = "polkadot/runtime/westend", version = "20.0.0" } westend-runtime-constants = { path = "polkadot/runtime/westend/constants", default-features = false, version = "18.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 = "15.0.0" } +xcm = { path = "polkadot/xcm", default-features = false, package = "staging-xcm", version = "15.0.1" } xcm-builder = { path = "polkadot/xcm/xcm-builder", default-features = false, package = "staging-xcm-builder", version = "18.0.0" } xcm-docs = { path = "polkadot/xcm/docs", version = "0.1.0" } xcm-emulator = { path = "cumulus/xcm/xcm-emulator", default-features = false, version = "0.17.0" } xcm-executor = { path = "polkadot/xcm/xcm-executor", default-features = false, package = "staging-xcm-executor", version = "18.0.0" } -xcm-procedural = { path = "polkadot/xcm/procedural", default-features = false, version = "10.2.0" } +xcm-procedural = { path = "polkadot/xcm/procedural", default-features = false, version = "11.0.0" } xcm-runtime-apis = { path = "polkadot/xcm/xcm-runtime-apis", default-features = false, version = "0.5.0" } xcm-simulator = { path = "polkadot/xcm/xcm-simulator", default-features = false, version = "18.0.0" } zeroize = { version = "1.7.0", default-features = false } diff --git a/polkadot/xcm/Cargo.toml b/polkadot/xcm/Cargo.toml index 4c8a99bbb1d..524b3f3a18d 100644 --- a/polkadot/xcm/Cargo.toml +++ b/polkadot/xcm/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "staging-xcm" description = "The basic XCM datastructures." -version = "15.0.0" +version = "15.0.1" authors.workspace = true edition.workspace = true license.workspace = true diff --git a/polkadot/xcm/procedural/Cargo.toml b/polkadot/xcm/procedural/Cargo.toml index c1f492cfb53..15bd4e05921 100644 --- a/polkadot/xcm/procedural/Cargo.toml +++ b/polkadot/xcm/procedural/Cargo.toml @@ -4,7 +4,7 @@ description = "Procedural macros for XCM" authors.workspace = true edition.workspace = true license.workspace = true -version = "10.2.0" +version = "11.0.0" publish = true [lints] diff --git a/umbrella/Cargo.toml b/umbrella/Cargo.toml index e4e58d0cb0e..4bcd4b4b4a6 100644 --- a/umbrella/Cargo.toml +++ b/umbrella/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "polkadot-sdk" -version = "0.10.0" +version = "0.10.1" description = "Polkadot SDK umbrella crate." license = "Apache-2.0" publish = false @@ -1955,7 +1955,7 @@ version = "0.18.0" path = "../polkadot/xcm" default-features = false optional = true -version = "15.0.0" +version = "15.0.1" [dependencies.staging-xcm-builder] path = "../polkadot/xcm/xcm-builder" @@ -1991,7 +1991,7 @@ version = "5.0.0" path = "../polkadot/xcm/procedural" default-features = false optional = true -version = "10.2.0" +version = "11.0.0" [dependencies.xcm-runtime-apis] path = "../polkadot/xcm/xcm-runtime-apis" -- GitLab