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] diff --git a/runtime/calamari/src/lib.rs b/runtime/calamari/src/lib.rs index 67db95afc..37fb1fc44 100644 --- a/runtime/calamari/src/lib.rs +++ b/runtime/calamari/src/lib.rs @@ -143,10 +143,10 @@ 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, + transaction_version: 16, state_version: 0, }; diff --git a/runtime/manta/src/lib.rs b/runtime/manta/src/lib.rs index 9d886819c..9c8af48fe 100644 --- a/runtime/manta/src/lib.rs +++ b/runtime/manta/src/lib.rs @@ -145,10 +145,10 @@ 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, + transaction_version: 5, state_version: 1, };