diff --git a/Cargo.lock b/Cargo.lock index eede971311..2e88530331 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1993,7 +1993,7 @@ dependencies = [ [[package]] name = "joystream-node" -version = "3.0.1" +version = "3.1.0" dependencies = [ "frame-benchmarking", "frame-benchmarking-cli", @@ -2053,7 +2053,7 @@ dependencies = [ [[package]] name = "joystream-node-runtime" -version = "7.1.0" +version = "7.2.0" dependencies = [ "frame-benchmarking", "frame-executive", diff --git a/node/Cargo.toml b/node/Cargo.toml index 929c6d474b..dbd47a3717 100644 --- a/node/Cargo.toml +++ b/node/Cargo.toml @@ -3,7 +3,7 @@ authors = ['Joystream contributors'] build = 'build.rs' edition = '2018' name = 'joystream-node' -version = '3.0.1' +version = '3.1.0' default-run = "joystream-node" [[bin]] diff --git a/runtime/Cargo.toml b/runtime/Cargo.toml index 539b59e37f..31cd2e5429 100644 --- a/runtime/Cargo.toml +++ b/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.1.0' +version = '7.2.0' [dependencies] # Third-party dependencies diff --git a/runtime/src/lib.rs b/runtime/src/lib.rs index 2dbd8757d3..763aa8176b 100644 --- a/runtime/src/lib.rs +++ b/runtime/src/lib.rs @@ -70,7 +70,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion { spec_name: create_runtime_str!("joystream-node"), impl_name: create_runtime_str!("joystream-node"), authoring_version: 7, - spec_version: 1, + spec_version: 2, impl_version: 0, apis: crate::runtime_api::EXPORTED_RUNTIME_API_VERSIONS, transaction_version: 1, @@ -232,14 +232,14 @@ impl pallet_sudo::Trait for Runtime { } parameter_types! { - pub const UncleGenerations: BlockNumber = 5; + pub const UncleGenerations: BlockNumber = 0; } impl pallet_authorship::Trait for Runtime { type FindAuthor = pallet_session::FindAccountFromAuthorIndex; type UncleGenerations = UncleGenerations; type FilterUncle = (); - type EventHandler = Staking; + type EventHandler = (Staking, ImOnline); } impl_opaque_keys! {