From 7f577c640ee9a623bc3b47930de6102aefe48a81 Mon Sep 17 00:00:00 2001 From: Ryan Huttman Date: Wed, 10 Aug 2022 07:02:48 -0700 Subject: [PATCH] 1.6.0 Release (#226) * 1.6.0 release * caps --- CHANGELOG.md | 9 +++++++++ Cargo.lock | 2 +- node/Cargo.toml | 2 +- runtime/neumann/src/lib.rs | 4 ++-- runtime/turing/src/lib.rs | 4 ++-- 5 files changed, 15 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bf448d587..a944a5d3c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [1.6.0] - 2022-08-10 +- Update to substrate 0.9.26 +- Added base XCMP-handler pallet +- Updated XCMP-handler pallet to store chain/currency information +- Updated XCMP-handler pallet to create XCM instructions for a Transact with OAK tokens +- RPC to get accountId for XCM Descend + Transact +- RPC to get fees for scheduling an XCM task +- Update auto-compounding to work with new parachain-staking locks +- Removed tight coupling between valve and automation-time pallet ## [1.5.0] - 2022-07-19 - RPC to get execution fee for automation time diff --git a/Cargo.lock b/Cargo.lock index 206f6f842..4c1a60a29 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4828,7 +4828,7 @@ dependencies = [ [[package]] name = "oak-node" -version = "1.5.0" +version = "1.6.0" dependencies = [ "async-trait", "clap", diff --git a/node/Cargo.toml b/node/Cargo.toml index 7243fde6b..478c89058 100644 --- a/node/Cargo.toml +++ b/node/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oak-node" -version = "1.5.0" +version = "1.6.0" authors = ["OAK Developement Team"] description = "Automation-first Blockchain" license = "GPL-3.0" diff --git a/runtime/neumann/src/lib.rs b/runtime/neumann/src/lib.rs index da88570d6..d60e404bd 100644 --- a/runtime/neumann/src/lib.rs +++ b/runtime/neumann/src/lib.rs @@ -156,10 +156,10 @@ pub const VERSION: RuntimeVersion = RuntimeVersion { spec_name: create_runtime_str!("neumann"), impl_name: create_runtime_str!("neumann"), authoring_version: 1, - spec_version: 284, + spec_version: 285, impl_version: 1, apis: RUNTIME_API_VERSIONS, - transaction_version: 10, + transaction_version: 11, state_version: 0, }; diff --git a/runtime/turing/src/lib.rs b/runtime/turing/src/lib.rs index 2a7b19b58..21b69fc99 100644 --- a/runtime/turing/src/lib.rs +++ b/runtime/turing/src/lib.rs @@ -157,10 +157,10 @@ pub const VERSION: RuntimeVersion = RuntimeVersion { spec_name: create_runtime_str!("turing"), impl_name: create_runtime_str!("turing"), authoring_version: 1, - spec_version: 284, + spec_version: 285, impl_version: 1, apis: RUNTIME_API_VERSIONS, - transaction_version: 10, + transaction_version: 11, state_version: 0, };