Просмотр исходного кода

update runtime version and incorporate #2523

Mokhtar Naamani 3 лет назад
Родитель
Сommit
dff6e63b6b
5 измененных файлов с 10 добавлено и 5 удалено
  1. 2 2
      Cargo.lock
  2. 1 1
      node/Cargo.toml
  3. 5 0
      runtime/CHANGELOG.md
  4. 1 1
      runtime/Cargo.toml
  5. 1 1
      runtime/src/lib.rs

+ 2 - 2
Cargo.lock

@@ -2332,7 +2332,7 @@ dependencies = [
 
 [[package]]
 name = "joystream-node"
-version = "5.7.0"
+version = "5.8.0"
 dependencies = [
  "frame-benchmarking",
  "frame-benchmarking-cli",
@@ -2393,7 +2393,7 @@ dependencies = [
 
 [[package]]
 name = "joystream-node-runtime"
-version = "9.9.0"
+version = "9.10.0"
 dependencies = [
  "frame-benchmarking",
  "frame-executive",

+ 1 - 1
node/Cargo.toml

@@ -3,7 +3,7 @@ authors = ['Joystream contributors']
 build = 'build.rs'
 edition = '2018'
 name = 'joystream-node'
-version = '5.7.0'
+version = '5.8.0'
 default-run = "joystream-node"
 
 [[bin]]

+ 5 - 0
runtime/CHANGELOG.md

@@ -1,3 +1,8 @@
+### Version 9.10.0 - Giza
+- New storage and distribution runtime module
+- Renaming of working groups and adding new working group for distributor role
+- Enhancements to content directory module, supporting deletion of channels and videos.
+
 ### Version 9.9.0 - Sumer - upgrade
 - Increase the max allowed working group mint capacity that can be set by council via proposals
 

+ 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 = '9.9.0'
+version = '9.10.0'
 
 [dependencies]
 # Third-party dependencies

+ 1 - 1
runtime/src/lib.rs

@@ -83,7 +83,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
     spec_name: create_runtime_str!("joystream-node"),
     impl_name: create_runtime_str!("joystream-node"),
     authoring_version: 9,
-    spec_version: 9,
+    spec_version: 10,
     impl_version: 0,
     apis: crate::runtime_api::EXPORTED_RUNTIME_API_VERSIONS,
     transaction_version: 1,