Skip to content

Commit

Permalink
1.6.0 Release (#226)
Browse files Browse the repository at this point in the history
* 1.6.0 release

* caps
  • Loading branch information
Ryan Huttman committed Aug 10, 2022
1 parent d698a60 commit 7f577c6
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 6 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion node/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
4 changes: 2 additions & 2 deletions runtime/neumann/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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,
};

Expand Down
4 changes: 2 additions & 2 deletions runtime/turing/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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,
};

Expand Down

0 comments on commit 7f577c6

Please sign in to comment.