diff --git a/CHANGELOG.md b/CHANGELOG.md index 60de634d3..45627c4a3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,9 +4,12 @@ ### Changed - [\#836](https://github.com/Manta-Network/Manta/pull/836) client trait bound refactor [CA] - [\#848](https://github.com/Manta-Network/Manta/pull/848) Fix XCM tests [CADO] +- [\#860](https://github.com/Manta-Network/Manta/pull/860) Don't include testing helpers in release code [CA] +- [\#865](https://github.com/Manta-Network/Manta/pull/865) Aura slot skip fix v2 [CA] ### Fixed - [\#846](https://github.com/Manta-Network/Manta/pull/846) Fix sequence skipping when a collator misses its slot [CA] +- [\#867](https://github.com/Manta-Network/Manta/pull/867) Fix round changes [CA] ## v3.4.2 ### Changed diff --git a/Cargo.lock b/Cargo.lock index e1d7cd644..ed687e722 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1046,7 +1046,7 @@ dependencies = [ [[package]] name = "calamari-vesting" -version = "3.4.2" +version = "3.4.3" dependencies = [ "chrono", "frame-benchmarking", @@ -5068,7 +5068,7 @@ dependencies = [ [[package]] name = "manta-primitives" -version = "3.4.2" +version = "3.4.3" dependencies = [ "frame-benchmarking", "frame-support", @@ -5917,7 +5917,7 @@ dependencies = [ [[package]] name = "pallet-asset-manager" -version = "3.4.0" +version = "3.4.3" dependencies = [ "frame-benchmarking", "frame-support", @@ -6544,7 +6544,7 @@ dependencies = [ [[package]] name = "pallet-parachain-staking" -version = "3.4.0" +version = "3.4.3" dependencies = [ "frame-benchmarking", "frame-support", @@ -10523,7 +10523,7 @@ dependencies = [ [[package]] name = "session-key-primitives" -version = "3.4.0" +version = "3.4.3" dependencies = [ "manta-primitives", "nimbus-primitives", diff --git a/pallets/asset-manager/Cargo.toml b/pallets/asset-manager/Cargo.toml index 2736565b6..e50defee6 100644 --- a/pallets/asset-manager/Cargo.toml +++ b/pallets/asset-manager/Cargo.toml @@ -5,7 +5,7 @@ homepage = 'https://manta.network' license = 'GPL-3.0' name = "pallet-asset-manager" repository = 'https://github.com/Manta-Network/Manta/' -version = "3.4.0" +version = '3.4.3' [dependencies] codec = { package = "parity-scale-codec", version = '3.1.2', default-features = false } diff --git a/pallets/parachain-staking/Cargo.toml b/pallets/parachain-staking/Cargo.toml index 71d0ee2b3..7465f1c8b 100644 --- a/pallets/parachain-staking/Cargo.toml +++ b/pallets/parachain-staking/Cargo.toml @@ -6,7 +6,7 @@ homepage = 'https://manta.network' license = 'GPL-3.0' name = "pallet-parachain-staking" repository = 'https://github.com/Manta-Network/Manta/' -version = "3.4.0" +version = '3.4.3' [dependencies] log = { version = "0.4", default-features = false } diff --git a/pallets/vesting/Cargo.toml b/pallets/vesting/Cargo.toml index 42a1981d7..9e6815011 100644 --- a/pallets/vesting/Cargo.toml +++ b/pallets/vesting/Cargo.toml @@ -5,7 +5,7 @@ homepage = 'https://manta.network' license = 'GPL-3.0' name = "calamari-vesting" repository = 'https://github.com/Manta-Network/Manta/' -version = '3.4.2' +version = '3.4.3' [dependencies] codec = { package = "parity-scale-codec", version = '3.1.2', default-features = false, features = ["derive", "max-encoded-len"] } diff --git a/primitives/manta/Cargo.toml b/primitives/manta/Cargo.toml index 6195cdd97..9324378c5 100644 --- a/primitives/manta/Cargo.toml +++ b/primitives/manta/Cargo.toml @@ -5,7 +5,7 @@ homepage = 'https://manta.network' license = 'GPL-3.0' name = "manta-primitives" repository = 'https://github.com/Manta-Network/Manta/' -version = '3.4.2' +version = '3.4.3' [package.metadata.docs.rs] targets = ['x86_64-unknown-linux-gnu'] diff --git a/primitives/session-keys/Cargo.toml b/primitives/session-keys/Cargo.toml index 782da1150..ecf26adca 100644 --- a/primitives/session-keys/Cargo.toml +++ b/primitives/session-keys/Cargo.toml @@ -4,7 +4,7 @@ description = "Primitives for session keys" edition = "2021" license = 'GPL-3.0' name = "session-key-primitives" -version = "3.4.0" +version = '3.4.3' [dependencies] manta-primitives = { path = "../manta", default-features = false } diff --git a/runtime/calamari/src/lib.rs b/runtime/calamari/src/lib.rs index 831549eaa..02497be96 100644 --- a/runtime/calamari/src/lib.rs +++ b/runtime/calamari/src/lib.rs @@ -123,7 +123,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion { spec_name: create_runtime_str!("calamari"), impl_name: create_runtime_str!("calamari"), authoring_version: 2, - spec_version: 3430, + spec_version: 3432, impl_version: 1, apis: RUNTIME_API_VERSIONS, transaction_version: 9, diff --git a/runtime/dolphin/src/lib.rs b/runtime/dolphin/src/lib.rs index e96f27bff..b753edba1 100644 --- a/runtime/dolphin/src/lib.rs +++ b/runtime/dolphin/src/lib.rs @@ -117,7 +117,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion { spec_name: create_runtime_str!("dolphin"), impl_name: create_runtime_str!("dolphin"), authoring_version: 2, - spec_version: 3430, + spec_version: 3432, impl_version: 1, apis: RUNTIME_API_VERSIONS, transaction_version: 4, diff --git a/runtime/manta/src/lib.rs b/runtime/manta/src/lib.rs index 500d9762c..74a62e5b2 100644 --- a/runtime/manta/src/lib.rs +++ b/runtime/manta/src/lib.rs @@ -124,7 +124,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion { spec_name: create_runtime_str!("manta"), impl_name: create_runtime_str!("manta"), authoring_version: 1, - spec_version: 3430, + spec_version: 3432, impl_version: 1, apis: RUNTIME_API_VERSIONS, transaction_version: 1,