git.delta.rocks / unique-network / refs/commits / 0217f0bf8cd8

difftreelog

up version

Igor Kozyrev2022-03-29parent: #fcbdc31.patch.diff
in: master

7 files changed

modifiedruntime/common/Cargo.tomldiffbeforeafterboth
before · runtime/common/Cargo.toml
1[package]2authors = ['Unique Network <support@uniquenetwork.io>']3description = 'Unique Runtime Common'4edition = '2021'5homepage = 'https://unique.network'6license = 'All Rights Reserved'7name = 'unique-runtime-common'8repository = 'https://github.com/UniqueNetwork/unique-chain'9version = '0.1.0'1011[features]12default = ['std']13std = [14    'sp-core/std',15    'sp-runtime/std',16    'codec/std',17    'frame-support/std',18    'frame-system/std',19    'sp-consensus-aura/std',20    'pallet-common/std',21    'fp-rpc/std',22]23runtime-benchmarks = [24    'sp-runtime/runtime-benchmarks',25    'frame-support/runtime-benchmarks',26    'frame-system/runtime-benchmarks',27]2829[dependencies.sp-core]30default-features = false31git = 'https://github.com/paritytech/substrate.git'32branch = 'polkadot-v0.9.18'3334[dependencies.sp-runtime]35default-features = false36git = 'https://github.com/paritytech/substrate.git'37branch = 'polkadot-v0.9.18'3839[dependencies.codec]40default-features = false41features = ['derive']42package = 'parity-scale-codec'43version = '3.1.2'4445[dependencies.scale-info]46default-features = false47features = ["derive"]48version = "2.0.1"4950[dependencies.frame-support]51default-features = false52git = 'https://github.com/paritytech/substrate.git'53branch = 'polkadot-v0.9.18'5455[dependencies.frame-system]56default-features = false57git = 'https://github.com/paritytech/substrate.git'58branch = 'polkadot-v0.9.18'5960[dependencies.pallet-common]61default-features = false62path = "../../pallets/common"6364[dependencies.sp-consensus-aura]65default-features = false66git = 'https://github.com/paritytech/substrate.git'67branch = 'polkadot-v0.9.18'6869[dependencies.fp-rpc]70default-features = false71git = "https://github.com/uniquenetwork/frontier.git"72branch = "unique-polkadot-v0.9.18"
after · runtime/common/Cargo.toml
1[package]2authors = ['Unique Network <support@uniquenetwork.io>']3description = 'Unique Runtime Common'4edition = '2021'5homepage = 'https://unique.network'6license = 'All Rights Reserved'7name = 'unique-runtime-common'8repository = 'https://github.com/UniqueNetwork/unique-chain'9version = '0.9.18'1011[features]12default = ['std']13std = [14    'sp-core/std',15    'sp-runtime/std',16    'codec/std',17    'frame-support/std',18    'frame-system/std',19    'sp-consensus-aura/std',20    'pallet-common/std',21    'fp-rpc/std',22]23runtime-benchmarks = [24    'sp-runtime/runtime-benchmarks',25    'frame-support/runtime-benchmarks',26    'frame-system/runtime-benchmarks',27]2829[dependencies.sp-core]30default-features = false31git = 'https://github.com/paritytech/substrate.git'32branch = 'polkadot-v0.9.18'3334[dependencies.sp-runtime]35default-features = false36git = 'https://github.com/paritytech/substrate.git'37branch = 'polkadot-v0.9.18'3839[dependencies.codec]40default-features = false41features = ['derive']42package = 'parity-scale-codec'43version = '3.1.2'4445[dependencies.scale-info]46default-features = false47features = ["derive"]48version = "2.0.1"4950[dependencies.frame-support]51default-features = false52git = 'https://github.com/paritytech/substrate.git'53branch = 'polkadot-v0.9.18'5455[dependencies.frame-system]56default-features = false57git = 'https://github.com/paritytech/substrate.git'58branch = 'polkadot-v0.9.18'5960[dependencies.pallet-common]61default-features = false62path = "../../pallets/common"6364[dependencies.sp-consensus-aura]65default-features = false66git = 'https://github.com/paritytech/substrate.git'67branch = 'polkadot-v0.9.18'6869[dependencies.fp-rpc]70default-features = false71git = "https://github.com/uniquenetwork/frontier.git"72branch = "unique-polkadot-v0.9.18"
modifiedruntime/opal/Cargo.tomldiffbeforeafterboth
--- a/runtime/opal/Cargo.toml
+++ b/runtime/opal/Cargo.toml
@@ -10,7 +10,7 @@
 license = 'GPLv3'
 name = 'opal-runtime'
 repository = 'https://github.com/UniqueNetwork/unique-chain'
-version = '0.1.0'
+version = '0.9.18'
 
 [package.metadata.docs.rs]
 targets = ['x86_64-unknown-linux-gnu']
modifiedruntime/opal/src/lib.rsdiffbeforeafterboth
--- a/runtime/opal/src/lib.rs
+++ b/runtime/opal/src/lib.rs
@@ -114,7 +114,7 @@
 
 use unique_runtime_common::{impl_common_runtime_apis, types::*, constants::*};
 
-pub const RUNTIME_NAME: &str = "Opal";
+pub const RUNTIME_NAME: &str = "opal";
 
 type CrossAccountId = pallet_common::account::BasicCrossAccountId<Runtime>;
 
@@ -151,7 +151,7 @@
 	spec_name: create_runtime_str!(RUNTIME_NAME),
 	impl_name: create_runtime_str!(RUNTIME_NAME),
 	authoring_version: 1,
-	spec_version: 917004,
+	spec_version: 918000,
 	impl_version: 0,
 	apis: RUNTIME_API_VERSIONS,
 	transaction_version: 1,
modifiedruntime/quartz/Cargo.tomldiffbeforeafterboth
--- a/runtime/quartz/Cargo.toml
+++ b/runtime/quartz/Cargo.toml
@@ -10,7 +10,7 @@
 license = 'GPLv3'
 name = 'quartz-runtime'
 repository = 'https://github.com/UniqueNetwork/unique-chain'
-version = '0.1.0'
+version = '0.9.18'
 
 [package.metadata.docs.rs]
 targets = ['x86_64-unknown-linux-gnu']
modifiedruntime/quartz/src/lib.rsdiffbeforeafterboth
--- a/runtime/quartz/src/lib.rs
+++ b/runtime/quartz/src/lib.rs
@@ -114,7 +114,7 @@
 
 use unique_runtime_common::{impl_common_runtime_apis, types::*, constants::*};
 
-pub const RUNTIME_NAME: &str = "Quartz";
+pub const RUNTIME_NAME: &str = "quartz";
 
 type CrossAccountId = pallet_common::account::BasicCrossAccountId<Runtime>;
 
@@ -151,7 +151,7 @@
 	spec_name: create_runtime_str!(RUNTIME_NAME),
 	impl_name: create_runtime_str!(RUNTIME_NAME),
 	authoring_version: 1,
-	spec_version: 917004,
+	spec_version: 918000,
 	impl_version: 0,
 	apis: RUNTIME_API_VERSIONS,
 	transaction_version: 1,
modifiedruntime/unique/Cargo.tomldiffbeforeafterboth
--- a/runtime/unique/Cargo.toml
+++ b/runtime/unique/Cargo.toml
@@ -10,7 +10,7 @@
 license = 'GPLv3'
 name = 'unique-runtime'
 repository = 'https://github.com/UniqueNetwork/unique-chain'
-version = '0.9.17'
+version = '0.9.18'
 
 [package.metadata.docs.rs]
 targets = ['x86_64-unknown-linux-gnu']
modifiedruntime/unique/src/lib.rsdiffbeforeafterboth
--- a/runtime/unique/src/lib.rs
+++ b/runtime/unique/src/lib.rs
@@ -113,7 +113,7 @@
 
 use unique_runtime_common::{impl_common_runtime_apis, types::*, constants::*};
 
-pub const RUNTIME_NAME: &str = "Unique";
+pub const RUNTIME_NAME: &str = "unique";
 
 type CrossAccountId = pallet_common::account::BasicCrossAccountId<Runtime>;
 
@@ -150,7 +150,7 @@
 	spec_name: create_runtime_str!(RUNTIME_NAME),
 	impl_name: create_runtime_str!(RUNTIME_NAME),
 	authoring_version: 1,
-	spec_version: 917004,
+	spec_version: 918000,
 	impl_version: 0,
 	apis: RUNTIME_API_VERSIONS,
 	transaction_version: 1,