Skip to content

Commit 0b82fad

Browse files
committed
Apply paln
1 parent f332c9a commit 0b82fad

File tree

6 files changed

+12
-12
lines changed

6 files changed

+12
-12
lines changed

Cargo.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -930,7 +930,7 @@ pallet-insecure-randomness-collective-flip = { path = "substrate/frame/insecure-
930930
pallet-lottery = { default-features = false, path = "substrate/frame/lottery" }
931931
pallet-membership = { path = "substrate/frame/membership", default-features = false, version = "38.0.0" }
932932
pallet-message-queue = { path = "substrate/frame/message-queue", default-features = false, version = "41.0.2" }
933-
pallet-migrations = { path = "substrate/frame/migrations", default-features = false, version = "8.0.0" }
933+
pallet-migrations = { path = "substrate/frame/migrations", default-features = false, version = "8.0.1" }
934934
pallet-minimal-template = { path = "templates/minimal/pallets/template", default-features = false, version = "0.1.0" }
935935
pallet-mixnet = { default-features = false, path = "substrate/frame/mixnet" }
936936
pallet-mmr = { path = "substrate/frame/merkle-mountain-range", default-features = false, version = "38.0.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.3" }
992+
pallet-xcm = { path = "polkadot/xcm/pallet-xcm", default-features = false, version = "17.0.4" }
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" }
@@ -1024,7 +1024,7 @@ polkadot-core-primitives = { path = "polkadot/core-primitives", default-features
10241024
polkadot-dispute-distribution = { path = "polkadot/node/network/dispute-distribution", default-features = false, version = "18.0.0" }
10251025
polkadot-erasure-coding = { path = "polkadot/erasure-coding", default-features = false, version = "16.0.0" }
10261026
polkadot-gossip-support = { path = "polkadot/node/network/gossip-support", default-features = false, version = "18.0.0" }
1027-
polkadot-network-bridge = { path = "polkadot/node/network/bridge", default-features = false, version = "18.0.0" }
1027+
polkadot-network-bridge = { path = "polkadot/node/network/bridge", default-features = false, version = "18.0.1" }
10281028
polkadot-node-collation-generation = { path = "polkadot/node/collation-generation", default-features = false, version = "18.0.0" }
10291029
polkadot-node-core-approval-voting = { path = "polkadot/node/core/approval-voting", default-features = false, version = "18.3.0" }
10301030
polkadot-node-core-av-store = { path = "polkadot/node/core/av-store", default-features = false, version = "18.0.0" }

polkadot/node/network/bridge/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "polkadot-network-bridge"
3-
version = "18.0.0"
3+
version = "18.0.1"
44
description = "The Network Bridge Subsystem — protocol multiplexer for Polkadot."
55
authors.workspace = true
66
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.3"
3+
version = "17.0.4"
44
description = "A pallet for handling XCM programs."
55
authors.workspace = true
66
edition.workspace = true

substrate/frame/migrations/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-migrations"
3-
version = "8.0.0"
3+
version = "8.0.1"
44
description = "FRAME pallet to execute multi-block migrations."
55
authors.workspace = true
66
edition.workspace = true

umbrella/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1166,7 +1166,7 @@ version = "41.0.2"
11661166
path = "../substrate/frame/migrations"
11671167
default-features = false
11681168
optional = true
1169-
version = "8.0.0"
1169+
version = "8.0.1"
11701170

11711171
[dependencies.pallet-mixnet]
11721172
path = "../substrate/frame/mixnet"
@@ -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.3"
1493+
version = "17.0.4"
14941494

14951495
[dependencies.pallet-xcm-benchmarks]
14961496
path = "../polkadot/xcm/pallet-xcm-benchmarks"
@@ -2222,7 +2222,7 @@ version = "18.0.0"
22222222
path = "../polkadot/node/network/bridge"
22232223
default-features = false
22242224
optional = true
2225-
version = "18.0.0"
2225+
version = "18.0.1"
22262226

22272227
[dependencies.polkadot-node-collation-generation]
22282228
path = "../polkadot/node/collation-generation"

0 commit comments

Comments
 (0)