From 6536fb9ca432d989c6be9c057c1e8ab862a54079 Mon Sep 17 00:00:00 2001 From: Nikhil Vengal Date: Mon, 30 Jan 2023 17:38:44 -0800 Subject: [PATCH] Bump to node version 1.8.0 and spec version 288 (#332) --- Cargo.lock | 2 +- node/Cargo.toml | 2 +- runtime/neumann/src/lib.rs | 4 ++-- runtime/oak/src/lib.rs | 4 ++-- runtime/turing/src/lib.rs | 4 ++-- 5 files changed, 8 insertions(+), 8 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index d59f07942..0020c7016 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4879,7 +4879,7 @@ dependencies = [ [[package]] name = "oak-node" -version = "1.7.0" +version = "1.8.0" dependencies = [ "async-trait", "clap", diff --git a/node/Cargo.toml b/node/Cargo.toml index fee487776..a020bd441 100644 --- a/node/Cargo.toml +++ b/node/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oak-node" -version = "1.7.0" +version = "1.8.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 5ce3b3bc7..4b1721fd9 100644 --- a/runtime/neumann/src/lib.rs +++ b/runtime/neumann/src/lib.rs @@ -166,10 +166,10 @@ pub const VERSION: RuntimeVersion = RuntimeVersion { spec_name: create_runtime_str!("neumann"), impl_name: create_runtime_str!("neumann"), authoring_version: 1, - spec_version: 287, + spec_version: 288, impl_version: 1, apis: RUNTIME_API_VERSIONS, - transaction_version: 13, + transaction_version: 14, state_version: 0, }; diff --git a/runtime/oak/src/lib.rs b/runtime/oak/src/lib.rs index 63a32f961..d0917d29c 100644 --- a/runtime/oak/src/lib.rs +++ b/runtime/oak/src/lib.rs @@ -166,10 +166,10 @@ pub const VERSION: RuntimeVersion = RuntimeVersion { spec_name: create_runtime_str!("oak"), impl_name: create_runtime_str!("oak"), authoring_version: 1, - spec_version: 287, + spec_version: 288, impl_version: 1, apis: RUNTIME_API_VERSIONS, - transaction_version: 13, + transaction_version: 14, state_version: 0, }; diff --git a/runtime/turing/src/lib.rs b/runtime/turing/src/lib.rs index 5ab2a1515..c17c538d8 100644 --- a/runtime/turing/src/lib.rs +++ b/runtime/turing/src/lib.rs @@ -172,10 +172,10 @@ pub const VERSION: RuntimeVersion = RuntimeVersion { spec_name: create_runtime_str!("turing"), impl_name: create_runtime_str!("turing"), authoring_version: 1, - spec_version: 287, + spec_version: 288, impl_version: 1, apis: RUNTIME_API_VERSIONS, - transaction_version: 13, + transaction_version: 14, state_version: 0, };