Skip to content

Commit a2c28b2

Browse files
committed
Apply plan
1 parent dd9acc0 commit a2c28b2

File tree

8 files changed

+14
-14
lines changed

8 files changed

+14
-14
lines changed

Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -602,10 +602,10 @@ arrayvec = { version = "0.7.4" }
602602
assert_cmd = { version = "2.0.14" }
603603
assert_matches = { version = "1.5.0" }
604604
asset-hub-rococo-emulated-chain = { path = "cumulus/parachains/integration-tests/emulated/chains/parachains/assets/asset-hub-rococo", version = "0.1.0" }
605-
asset-hub-rococo-runtime = { path = "cumulus/parachains/runtimes/assets/asset-hub-rococo", default-features = false, version = "0.22.4" }
605+
asset-hub-rococo-runtime = { path = "cumulus/parachains/runtimes/assets/asset-hub-rococo", default-features = false, version = "0.22.5" }
606606
asset-hub-westend-emulated-chain = { path = "cumulus/parachains/integration-tests/emulated/chains/parachains/assets/asset-hub-westend", version = "0.1.0" }
607-
asset-hub-westend-runtime = { path = "cumulus/parachains/runtimes/assets/asset-hub-westend", version = "0.26.6" }
608-
asset-test-utils = { path = "cumulus/parachains/runtimes/assets/test-utils", default-features = false, version = "20.0.0" }
607+
asset-hub-westend-runtime = { path = "cumulus/parachains/runtimes/assets/asset-hub-westend", version = "0.26.7" }
608+
asset-test-utils = { path = "cumulus/parachains/runtimes/assets/test-utils", default-features = false, version = "20.0.1" }
609609
assets-common = { path = "cumulus/parachains/runtimes/assets/common", default-features = false, version = "0.18.3" }
610610
async-channel = { version = "1.8.0" }
611611
async-std = { version = "1.9.0" }
@@ -989,7 +989,7 @@ pallet-uniques = { path = "substrate/frame/uniques", default-features = false, v
989989
pallet-utility = { path = "substrate/frame/utility", default-features = false, version = "38.0.0" }
990990
pallet-vesting = { path = "substrate/frame/vesting", default-features = false, version = "38.0.0" }
991991
pallet-whitelist = { path = "substrate/frame/whitelist", default-features = false, version = "37.0.0" }
992-
pallet-xcm = { path = "polkadot/xcm/pallet-xcm", default-features = false, version = "17.0.4" }
992+
pallet-xcm = { path = "polkadot/xcm/pallet-xcm", default-features = false, version = "17.0.5" }
993993
pallet-xcm-benchmarks = { path = "polkadot/xcm/pallet-xcm-benchmarks", default-features = false, version = "17.0.1" }
994994
pallet-xcm-bridge-hub = { path = "bridges/modules/xcm-bridge-hub", default-features = false, version = "0.13.3" }
995995
pallet-xcm-bridge-hub-router = { path = "bridges/modules/xcm-bridge-hub-router", default-features = false, version = "0.15.3" }
@@ -1105,7 +1105,7 @@ reqwest = { version = "0.11", default-features = false }
11051105
rlp = { version = "0.5.2", default-features = false }
11061106
rococo-emulated-chain = { path = "cumulus/parachains/integration-tests/emulated/chains/relays/rococo", version = "0.1.0" }
11071107
rococo-parachain-runtime = { path = "cumulus/parachains/runtimes/testing/rococo-parachain", version = "0.17.0" }
1108-
rococo-runtime = { path = "polkadot/runtime/rococo", version = "18.0.1" }
1108+
rococo-runtime = { path = "polkadot/runtime/rococo", version = "18.0.2" }
11091109
rococo-runtime-constants = { path = "polkadot/runtime/rococo/constants", default-features = false, version = "17.0.0" }
11101110
rococo-system-emulated-network = { path = "cumulus/parachains/integration-tests/emulated/networks/rococo-system", version = "0.1.0" }
11111111
rococo-westend-system-emulated-network = { path = "cumulus/parachains/integration-tests/emulated/networks/rococo-westend-system", version = "0.1.0" }
@@ -1351,7 +1351,7 @@ wasmi = { version = "0.32.3", default-features = false }
13511351
wasmtime = { version = "8.0.1", default-features = false }
13521352
wat = { version = "1.0.0" }
13531353
westend-emulated-chain = { path = "cumulus/parachains/integration-tests/emulated/chains/relays/westend", default-features = false, version = "0.1.0" }
1354-
westend-runtime = { path = "polkadot/runtime/westend", version = "18.1.0" }
1354+
westend-runtime = { path = "polkadot/runtime/westend", version = "18.1.1" }
13551355
westend-runtime-constants = { path = "polkadot/runtime/westend/constants", default-features = false, version = "17.0.0" }
13561356
westend-system-emulated-network = { path = "cumulus/parachains/integration-tests/emulated/networks/westend-system", version = "0.1.0" }
13571357
x25519-dalek = { version = "2.0" }

cumulus/parachains/runtimes/assets/asset-hub-rococo/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "asset-hub-rococo-runtime"
3-
version = "0.22.4"
3+
version = "0.22.5"
44
authors.workspace = true
55
edition.workspace = true
66
description = "Rococo variant of Asset Hub parachain runtime"

cumulus/parachains/runtimes/assets/asset-hub-westend/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "asset-hub-westend-runtime"
3-
version = "0.26.6"
3+
version = "0.26.7"
44
authors.workspace = true
55
edition.workspace = true
66
description = "Westend variant of Asset Hub parachain runtime"

cumulus/parachains/runtimes/assets/test-utils/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "asset-test-utils"
3-
version = "20.0.0"
3+
version = "20.0.1"
44
authors.workspace = true
55
edition.workspace = true
66
description = "Test utils for Asset Hub runtimes."

polkadot/runtime/rococo/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "rococo-runtime"
33
build = "build.rs"
4-
version = "18.0.1"
4+
version = "18.0.2"
55
description = "Rococo testnet Relay Chain runtime."
66
authors.workspace = true
77
edition.workspace = true

polkadot/runtime/westend/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "westend-runtime"
33
build = "build.rs"
4-
version = "18.1.0"
4+
version = "18.1.1"
55
description = "Westend testnet Relay Chain runtime."
66
authors.workspace = true
77
edition.workspace = true

polkadot/xcm/pallet-xcm/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "pallet-xcm"
3-
version = "17.0.4"
3+
version = "17.0.5"
44
description = "A pallet for handling XCM programs."
55
authors.workspace = true
66
edition.workspace = true

umbrella/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1490,7 +1490,7 @@ version = "37.0.0"
14901490
path = "../polkadot/xcm/pallet-xcm"
14911491
default-features = false
14921492
optional = true
1493-
version = "17.0.4"
1493+
version = "17.0.5"
14941494

14951495
[dependencies.pallet-xcm-benchmarks]
14961496
path = "../polkadot/xcm/pallet-xcm-benchmarks"
@@ -1994,7 +1994,7 @@ version = "0.4.3"
19941994
path = "../cumulus/parachains/runtimes/assets/test-utils"
19951995
default-features = false
19961996
optional = true
1997-
version = "20.0.0"
1997+
version = "20.0.1"
19981998

19991999
[dependencies.bridge-hub-test-utils]
20002000
path = "../cumulus/parachains/runtimes/bridge-hubs/test-utils"

0 commit comments

Comments
 (0)