diff --git a/CHANGELOG.md b/CHANGELOG.md index db032c4027..fad68b5c5d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -15,6 +15,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). - Add `pallet-vesting` to Asset Hubs ([polkadot-fellows/runtimes#269](https://github.com/polkadot-fellows/runtimes/pull/269)) - Add Pay Salary Collectives test ([polkadot-fellows/runtimes#260](https://github.com/polkadot-fellows/runtimes/pull/260)) +- Add `pallet-xcm::transfer_assets_using_type_and_then()` for complex asset transfers ([polkadot-fellows/runtimes#311](https://github.com/polkadot-fellows/runtimes/pull/311)) ### Removed diff --git a/Cargo.lock b/Cargo.lock index ef1ade44eb..4cd32aa1d8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -8426,9 +8426,9 @@ dependencies = [ [[package]] name = "pallet-xcm" -version = "8.0.4" +version = "8.0.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c13f5c598737e84294880333170d1df3868a11ad7ee79d0b1d1af37365e1c277" +checksum = "ba9138b04168b07b1aff4a2079f5514753c31dddba40e5fb471b9cda7da27ad6" dependencies = [ "bounded-collections", "frame-benchmarking", @@ -14395,9 +14395,9 @@ dependencies = [ [[package]] name = "staging-xcm-executor" -version = "8.0.1" +version = "8.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a638f4c8735cc04b5c93920a1f59e679f48b131315a07d146798e0decebf7720" +checksum = "74b5c5f2a1d610c5e20e5fae2680c9a28380f305afafeed62f341bfbce57b79a" dependencies = [ "environmental", "frame-benchmarking", diff --git a/Cargo.toml b/Cargo.toml index 902f741c2d..e8b5a48b0f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -129,7 +129,7 @@ pallet-uniques = { version = "29.0.0", default-features = false } pallet-utility = { version = "29.0.0", default-features = false } pallet-vesting = { version = "29.0.0", default-features = false } pallet-whitelist = { version = "28.0.0", default-features = false } -pallet-xcm = { version = "8.0.4", default-features = false } +pallet-xcm = { version = "8.0.5", default-features = false } pallet-xcm-benchmarks = { version = "8.0.2", default-features = false } pallet-xcm-bridge-hub = { version = "0.3.0", default-features = false } pallet-xcm-bridge-hub-router = { version = "0.6.0", default-features = false } @@ -192,7 +192,7 @@ sp-weights = { version = "28.0.0", default-features = false } staging-parachain-info = { version = "0.8.0", default-features = false } staging-xcm = { version = "8.0.1", default-features = false } staging-xcm-builder = { version = "8.0.1", default-features = false } -staging-xcm-executor = { version = "8.0.1", default-features = false } +staging-xcm-executor = { version = "8.0.2", default-features = false } static_assertions = { version = "1.1.0" } substrate-wasm-builder = { version = "18.0.0" } tokio = { version = "1.36.0" }