From b1801ac272f088fd6525fa16e276b4bf1115d2cf Mon Sep 17 00:00:00 2001 From: Georgi Zlatarev Date: Tue, 26 Sep 2023 19:42:51 +0300 Subject: [PATCH 1/3] bump chainspec Signed-off-by: Georgi Zlatarev --- runtime/calamari/src/lib.rs | 2 +- runtime/manta/src/lib.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/runtime/calamari/src/lib.rs b/runtime/calamari/src/lib.rs index 67db95afc..9a288d8e3 100644 --- a/runtime/calamari/src/lib.rs +++ b/runtime/calamari/src/lib.rs @@ -143,7 +143,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion { spec_name: create_runtime_str!("calamari"), impl_name: create_runtime_str!("calamari"), authoring_version: 2, - spec_version: 4400, + spec_version: 4401, impl_version: 1, apis: RUNTIME_API_VERSIONS, transaction_version: 15, diff --git a/runtime/manta/src/lib.rs b/runtime/manta/src/lib.rs index 9d886819c..40066daea 100644 --- a/runtime/manta/src/lib.rs +++ b/runtime/manta/src/lib.rs @@ -145,7 +145,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion { spec_name: create_runtime_str!("manta"), impl_name: create_runtime_str!("manta"), authoring_version: 1, - spec_version: 4400, + spec_version: 4401, impl_version: 1, apis: RUNTIME_API_VERSIONS, transaction_version: 4, From 8ed0971422910f2126134c029b60bb411ee42dcd Mon Sep 17 00:00:00 2001 From: Georgi Zlatarev Date: Tue, 26 Sep 2023 19:51:18 +0300 Subject: [PATCH 2/3] Update changelog Signed-off-by: Georgi Zlatarev --- CHANGELOG.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index be31d7af3..a88fe5bc0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,22 @@ # CHANGELOG +## v4.4.0-1 +### Added +- [\#1240](https://github.com/Manta-Network/Manta/pull/1240) :sparkle: org `arc-runner` patch 1 [MACA] +- [\#1241](https://github.com/Manta-Network/Manta/pull/1241) :bug: arc-runner patch 1.1 [MACA] +- [\#1238](https://github.com/Manta-Network/Manta/pull/1238) localdev tests [MA] +- [\#1242](https://github.com/Manta-Network/Manta/pull/1242) :rocket: arc runner migration patch 2.1 [MACA] +- [\#1244](https://github.com/Manta-Network/Manta/pull/1244) more lottery tests [MACA] +- [\#1250](https://github.com/Manta-Network/Manta/pull/1250) :wrench: allow all benchmarks to be triggered on feature branch +- [\#1249](https://github.com/Manta-Network/Manta/pull/1249) Add zombienet examples + +### Fixed +- [\#1234](https://github.com/Manta-Network/Manta/pull/1234) Serialize/deserialize vfr key [MACA] +- [\#1191](https://github.com/Manta-Network/Manta/pull/1191) Fix metadata diff checker workflow [MACA] +- [\#1243](https://github.com/Manta-Network/Manta/pull/1243) Add manta docker image to publish +- [\#1236](https://github.com/Manta-Network/Manta/pull/1236) Update Asset metadata call to not have dummy parameters [MACA] +- [\#1253](https://github.com/Manta-Network/Manta/pull/1253) Fix benchmark [CA] + ## v4.4.0 ### Added - [\#1083](https://github.com/Manta-Network/Manta/pull/1083) tx fees diff support [MACA] From ea2dbb6129ad7772b79fdd2964cf627fac6bcf46 Mon Sep 17 00:00:00 2001 From: Georgi Zlatarev Date: Wed, 27 Sep 2023 04:50:46 +0300 Subject: [PATCH 3/3] BUmp tx version Signed-off-by: Georgi Zlatarev --- runtime/calamari/src/lib.rs | 2 +- runtime/manta/src/lib.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/runtime/calamari/src/lib.rs b/runtime/calamari/src/lib.rs index 9a288d8e3..37fb1fc44 100644 --- a/runtime/calamari/src/lib.rs +++ b/runtime/calamari/src/lib.rs @@ -146,7 +146,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion { spec_version: 4401, impl_version: 1, apis: RUNTIME_API_VERSIONS, - transaction_version: 15, + transaction_version: 16, state_version: 0, }; diff --git a/runtime/manta/src/lib.rs b/runtime/manta/src/lib.rs index 40066daea..9c8af48fe 100644 --- a/runtime/manta/src/lib.rs +++ b/runtime/manta/src/lib.rs @@ -148,7 +148,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion { spec_version: 4401, impl_version: 1, apis: RUNTIME_API_VERSIONS, - transaction_version: 4, + transaction_version: 5, state_version: 1, };