Skip to content

Commit 37b271b

Browse files
committed
bump to release-v0.9.20
1 parent d444b8c commit 37b271b

File tree

6 files changed

+25
-25
lines changed

6 files changed

+25
-25
lines changed

Cargo.dev.toml

+9-9
Original file line numberDiff line numberDiff line change
@@ -91,12 +91,12 @@ cumulus-pallet-xcmp-queue = { git = "https://github.com/paritytech//cumulus", re
9191
cumulus-pallet-xcm = { git = "https://github.com/paritytech//cumulus", rev = "4bbedb30b1478494b410477498bd0a2221177a11" }
9292

9393
[patch.'https://github.com/paritytech/polkadot']
94-
xcm = { git = "https://github.com/paritytech//polkadot", rev = "f00a2772497aadddf75b8b4b475843ea0d910c48" }
95-
xcm-executor = { git = "https://github.com/paritytech//polkadot", rev = "f00a2772497aadddf75b8b4b475843ea0d910c48" }
96-
xcm-builder = { git = "https://github.com/paritytech//polkadot", rev = "f00a2772497aadddf75b8b4b475843ea0d910c48" }
97-
pallet-xcm = { git = "https://github.com/paritytech//polkadot", rev = "f00a2772497aadddf75b8b4b475843ea0d910c48" }
98-
polkadot-core-primitives = { git = "https://github.com/paritytech//polkadot", rev = "f00a2772497aadddf75b8b4b475843ea0d910c48" }
99-
polkadot-runtime-parachains = { git = "https://github.com/paritytech//polkadot", rev = "f00a2772497aadddf75b8b4b475843ea0d910c48" }
100-
polkadot-parachain = { git = "https://github.com/paritytech//polkadot", rev = "f00a2772497aadddf75b8b4b475843ea0d910c48" }
101-
polkadot-primitives = { git = "https://github.com/paritytech//polkadot", rev = "f00a2772497aadddf75b8b4b475843ea0d910c48" }
102-
xcm-simulator = { git = "https://github.com/paritytech//polkadot", rev = "f00a2772497aadddf75b8b4b475843ea0d910c48" }
94+
xcm = { git = "https://github.com/paritytech//polkadot", rev = "568169b41aea59a54ab8cfa23c31e84a26708280" }
95+
xcm-executor = { git = "https://github.com/paritytech//polkadot", rev = "568169b41aea59a54ab8cfa23c31e84a26708280" }
96+
xcm-builder = { git = "https://github.com/paritytech//polkadot", rev = "568169b41aea59a54ab8cfa23c31e84a26708280" }
97+
pallet-xcm = { git = "https://github.com/paritytech//polkadot", rev = "568169b41aea59a54ab8cfa23c31e84a26708280" }
98+
polkadot-core-primitives = { git = "https://github.com/paritytech//polkadot", rev = "568169b41aea59a54ab8cfa23c31e84a26708280" }
99+
polkadot-runtime-parachains = { git = "https://github.com/paritytech//polkadot", rev = "568169b41aea59a54ab8cfa23c31e84a26708280" }
100+
polkadot-parachain = { git = "https://github.com/paritytech//polkadot", rev = "568169b41aea59a54ab8cfa23c31e84a26708280" }
101+
polkadot-primitives = { git = "https://github.com/paritytech//polkadot", rev = "568169b41aea59a54ab8cfa23c31e84a26708280" }
102+
xcm-simulator = { git = "https://github.com/paritytech//polkadot", rev = "568169b41aea59a54ab8cfa23c31e84a26708280" }

traits/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ num-traits = { version = "0.2.14", default-features = false }
1818
impl-trait-for-tuples = "0.2.2"
1919
frame-support = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.20", default-features = false }
2020
orml-utilities = { path = "../utilities", version = "0.4.1-dev", default-features = false }
21-
xcm = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.19", default-features = false }
21+
xcm = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.20", default-features = false }
2222

2323
[features]
2424
default = ["std"]

unknown-tokens/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ sp-std = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v
1515
frame-support = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.20", default-features = false }
1616
frame-system = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.20", default-features = false }
1717

18-
xcm = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.19", default-features = false }
18+
xcm = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.20", default-features = false }
1919

2020
orml-xcm-support = { path = "../xcm-support", default-features = false }
2121

xcm-support/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkad
1515

1616
frame-support = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.20", default-features = false }
1717

18-
xcm = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.19", default-features = false }
19-
xcm-executor = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.19", default-features = false }
18+
xcm = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.20", default-features = false }
19+
xcm-executor = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.20", default-features = false }
2020

2121
orml-traits = { path = "../traits", version = "0.4.1-dev", default-features = false }
2222

xcm/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@ sp-std = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v
1515
frame-support = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.20", default-features = false }
1616
frame-system = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.20", default-features = false }
1717

18-
xcm = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.19", default-features = false }
19-
pallet-xcm = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.19", default-features = false }
18+
xcm = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.20", default-features = false }
19+
pallet-xcm = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.20", default-features = false }
2020

2121
[dev-dependencies]
22-
xcm-executor = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.19" }
22+
xcm-executor = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.20" }
2323

2424
[features]
2525
default = ["std"]

xtokens/Cargo.toml

+9-9
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ frame-system = { git = "https://github.com/paritytech/substrate", branch = "polk
2020

2121
cumulus-primitives-core = { git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.20", default-features = false }
2222

23-
xcm = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.19", default-features = false }
24-
xcm-executor = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.19", default-features = false }
23+
xcm = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.20", default-features = false }
24+
xcm-executor = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.20", default-features = false }
2525

2626
orml-xcm-support = { path = "../xcm-support", default-features = false }
2727
orml-traits = { path = "../traits", default-features = false}
@@ -38,13 +38,13 @@ cumulus-pallet-xcm = { git = "https://github.com/paritytech/cumulus", branch = "
3838
parachain-info = { git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.20" }
3939

4040
# polkadot
41-
polkadot-parachain = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.19" }
42-
xcm = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.19" }
43-
xcm-executor = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.19" }
44-
xcm-builder = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.19" }
45-
pallet-xcm = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.19" }
46-
polkadot-runtime-parachains = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.19" }
47-
xcm-simulator = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.19"}
41+
polkadot-parachain = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.20" }
42+
xcm = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.20" }
43+
xcm-executor = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.20" }
44+
xcm-builder = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.20" }
45+
pallet-xcm = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.20" }
46+
polkadot-runtime-parachains = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.20" }
47+
xcm-simulator = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.20"}
4848

4949
orml-tokens = { path = "../tokens" }
5050
orml-xcm = { path = "../xcm" }

0 commit comments

Comments
 (0)