Browse Source

runtime: Bump the runtime version.

Shamil Gadelshin 4 years ago
parent
commit
e4cd8fa6d1
3 changed files with 4 additions and 4 deletions
  1. 1 1
      Cargo.lock
  2. 1 1
      runtime/Cargo.toml
  3. 2 2
      runtime/src/lib.rs

+ 1 - 1
Cargo.lock

@@ -2336,7 +2336,7 @@ dependencies = [
 
 [[package]]
 name = "joystream-node-runtime"
-version = "7.8.0"
+version = "8.0.0"
 dependencies = [
  "frame-benchmarking",
  "frame-executive",

+ 1 - 1
runtime/Cargo.toml

@@ -4,7 +4,7 @@ edition = '2018'
 name = 'joystream-node-runtime'
 # Follow convention: https://github.com/Joystream/substrate-runtime-joystream/issues/1
 # {Authoring}.{Spec}.{Impl} of the RuntimeVersion
-version = '7.8.0'
+version = '8.0.0'
 
 [dependencies]
 # Third-party dependencies

+ 2 - 2
runtime/src/lib.rs

@@ -87,8 +87,8 @@ pub fn wasm_binary_unwrap() -> &'static [u8] {
 pub const VERSION: RuntimeVersion = RuntimeVersion {
     spec_name: create_runtime_str!("joystream-node"),
     impl_name: create_runtime_str!("joystream-node"),
-    authoring_version: 7,
-    spec_version: 8,
+    authoring_version: 8,
+    spec_version: 0,
     impl_version: 0,
     apis: crate::runtime_api::EXPORTED_RUNTIME_API_VERSIONS,
     transaction_version: 1,