From 4f952ac2fc29aa340221ded10156344fe1250cfa Mon Sep 17 00:00:00 2001 From: Nikhil Vengal Date: Thu, 15 Sep 2022 16:09:04 -0700 Subject: [PATCH] Bump runtime spec version 287 (#288) * Deprecate changelog --- CHANGELOG.md | 5 ++--- runtime/neumann/src/lib.rs | 4 ++-- runtime/oak/src/lib.rs | 4 ++-- runtime/turing/src/lib.rs | 4 ++-- 4 files changed, 8 insertions(+), 9 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2eeb59431..cbc97defd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,11 +1,10 @@ -# CHANGELOG +# CHANGELOG -- DEPRECATED All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## [Unreleased] -- Remove Sudo from Turing +# Deprecated in favor of [Releases](https://github.com/OAK-Foundation/OAK-blockchain/releases) ## [1.7.0] - 2022-08-18 - Adding try-runtime to Turing diff --git a/runtime/neumann/src/lib.rs b/runtime/neumann/src/lib.rs index 1b39978bd..1da5c05bc 100644 --- a/runtime/neumann/src/lib.rs +++ b/runtime/neumann/src/lib.rs @@ -153,10 +153,10 @@ pub const VERSION: RuntimeVersion = RuntimeVersion { spec_name: create_runtime_str!("neumann"), impl_name: create_runtime_str!("neumann"), authoring_version: 1, - spec_version: 286, + spec_version: 287, impl_version: 1, apis: RUNTIME_API_VERSIONS, - transaction_version: 12, + transaction_version: 13, state_version: 0, }; diff --git a/runtime/oak/src/lib.rs b/runtime/oak/src/lib.rs index 67f3411f0..1a69fd84d 100644 --- a/runtime/oak/src/lib.rs +++ b/runtime/oak/src/lib.rs @@ -155,10 +155,10 @@ pub const VERSION: RuntimeVersion = RuntimeVersion { spec_name: create_runtime_str!("oak"), impl_name: create_runtime_str!("oak"), authoring_version: 1, - spec_version: 286, + spec_version: 287, impl_version: 1, apis: RUNTIME_API_VERSIONS, - transaction_version: 12, + transaction_version: 13, state_version: 0, }; diff --git a/runtime/turing/src/lib.rs b/runtime/turing/src/lib.rs index 0c28b44f4..d399f9697 100644 --- a/runtime/turing/src/lib.rs +++ b/runtime/turing/src/lib.rs @@ -163,10 +163,10 @@ pub const VERSION: RuntimeVersion = RuntimeVersion { spec_name: create_runtime_str!("turing"), impl_name: create_runtime_str!("turing"), authoring_version: 1, - spec_version: 286, + spec_version: 287, impl_version: 1, apis: RUNTIME_API_VERSIONS, - transaction_version: 12, + transaction_version: 13, state_version: 0, };