diff --git a/node/Cargo.toml b/node/Cargo.toml index 9b47c76bc..dfbdc7ebe 100644 --- a/node/Cargo.toml +++ b/node/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oak-node" -version = "1.9.0" +version = "2.0.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 57ff379d9..acc9376b1 100644 --- a/runtime/neumann/src/lib.rs +++ b/runtime/neumann/src/lib.rs @@ -172,8 +172,8 @@ pub const VERSION: RuntimeVersion = RuntimeVersion { spec_name: create_runtime_str!("neumann"), impl_name: create_runtime_str!("neumann"), authoring_version: 1, - spec_version: 294, - impl_version: 1, + spec_version: 295, + impl_version: 0, apis: RUNTIME_API_VERSIONS, transaction_version: 17, state_version: 0, diff --git a/runtime/oak/src/lib.rs b/runtime/oak/src/lib.rs index 1cb5451c7..2d8a0ec8a 100644 --- a/runtime/oak/src/lib.rs +++ b/runtime/oak/src/lib.rs @@ -172,10 +172,10 @@ pub const VERSION: RuntimeVersion = RuntimeVersion { spec_name: create_runtime_str!("oak"), impl_name: create_runtime_str!("oak"), authoring_version: 1, - spec_version: 294, - impl_version: 1, + spec_version: 295, + impl_version: 0, apis: RUNTIME_API_VERSIONS, - transaction_version: 17, + transaction_version: 18, state_version: 0, }; diff --git a/runtime/turing/src/lib.rs b/runtime/turing/src/lib.rs index 621ae63f7..6748cec89 100644 --- a/runtime/turing/src/lib.rs +++ b/runtime/turing/src/lib.rs @@ -176,10 +176,10 @@ pub const VERSION: RuntimeVersion = RuntimeVersion { spec_name: create_runtime_str!("turing"), impl_name: create_runtime_str!("turing"), authoring_version: 1, - spec_version: 294, - impl_version: 1, + spec_version: 295, + impl_version: 0, apis: RUNTIME_API_VERSIONS, - transaction_version: 17, + transaction_version: 18, state_version: 0, };