Skip to content

Commit

Permalink
Release v4.1.0-1 (#1148)
Browse files Browse the repository at this point in the history
* Bump spec_versions and enable xcmp queue

Signed-off-by: Georgi Zlatarev <georgi.zlatarev@manta.network>

* Fix spec_version

Signed-off-by: Georgi Zlatarev <georgi.zlatarev@manta.network>

---------

Signed-off-by: Georgi Zlatarev <georgi.zlatarev@manta.network>
  • Loading branch information
ghzlatarev authored Jun 9, 2023
1 parent e3f0128 commit 731a944
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion runtime/calamari/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
spec_name: create_runtime_str!("calamari"),
impl_name: create_runtime_str!("calamari"),
authoring_version: 2,
spec_version: 4100,
spec_version: 4101,
impl_version: 1,
apis: RUNTIME_API_VERSIONS,
transaction_version: 13,
Expand Down
2 changes: 1 addition & 1 deletion runtime/dolphin/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
spec_name: create_runtime_str!("dolphin"),
impl_name: create_runtime_str!("dolphin"),
authoring_version: 2,
spec_version: 4100,
spec_version: 4101,
impl_version: 1,
apis: RUNTIME_API_VERSIONS,
transaction_version: 8,
Expand Down
2 changes: 1 addition & 1 deletion runtime/manta/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
spec_name: create_runtime_str!("manta"),
impl_name: create_runtime_str!("manta"),
authoring_version: 1,
spec_version: 4100,
spec_version: 4101,
impl_version: 1,
apis: RUNTIME_API_VERSIONS,
transaction_version: 3,
Expand Down
6 changes: 3 additions & 3 deletions runtime/manta/src/xcm_config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -63,9 +63,9 @@ impl cumulus_pallet_parachain_system::Config for Runtime {
type SelfParaId = parachain_info::Pallet<Runtime>;
type DmpMessageHandler = DmpQueue;
type ReservedDmpWeight = ReservedDmpWeight;
type OutboundXcmpMessageSource = ();
type XcmpMessageHandler = ();
type ReservedXcmpWeight = ();
type OutboundXcmpMessageSource = XcmpQueue;
type XcmpMessageHandler = XcmpQueue;
type ReservedXcmpWeight = ReservedXcmpWeight;
type OnSystemEvent = ();
type CheckAssociatedRelayNumber = RelayNumberStrictlyIncreases;
}
Expand Down

0 comments on commit 731a944

Please sign in to comment.