git.delta.rocks / unique-network / refs/commits / 51cfcc1f456d

difftreelog

Merge pull request #407 from UniqueNetwork/release-v924000

kozyrevdev2022-06-28parents: #31f3fd2 #9cd5436.patch.diff
in: master
update version to v0.9.24 polkadot

13 files changed

modified.envdiffbeforeafterboth
--- a/.env
+++ b/.env
@@ -1,6 +1,6 @@
 RUST_TOOLCHAIN=nightly-2022-05-11
 RUST_C=1.62.0-nightly
-POLKA_VERSION=release-v0.9.23
+POLKA_VERSION=release-v0.9.24
 UNIQUE_BRANCH=develop
 USER=***
 PASS=***
modifiedCargo.lockdiffbeforeafterboth
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -5289,7 +5289,7 @@
 
 [[package]]
 name = "opal-runtime"
-version = "0.9.23"
+version = "0.9.24"
 dependencies = [
  "cumulus-pallet-aura-ext",
  "cumulus-pallet-dmp-queue",
@@ -8598,7 +8598,7 @@
 
 [[package]]
 name = "quartz-runtime"
-version = "0.9.23"
+version = "0.9.24"
 dependencies = [
  "cumulus-pallet-aura-ext",
  "cumulus-pallet-dmp-queue",
@@ -12460,7 +12460,7 @@
 
 [[package]]
 name = "unique-node"
-version = "0.9.23"
+version = "0.9.24"
 dependencies = [
  "clap",
  "cumulus-client-cli",
@@ -12597,7 +12597,7 @@
 
 [[package]]
 name = "unique-runtime"
-version = "0.9.23"
+version = "0.9.24"
 dependencies = [
  "cumulus-pallet-aura-ext",
  "cumulus-pallet-dmp-queue",
@@ -12679,7 +12679,7 @@
 
 [[package]]
 name = "unique-runtime-common"
-version = "0.9.23"
+version = "0.9.24"
 dependencies = [
  "evm-coder",
  "fp-rpc",
modifiedDockerfile-parachaindiffbeforeafterboth
--- a/Dockerfile-parachain
+++ b/Dockerfile-parachain
@@ -2,9 +2,9 @@
 FROM phusion/baseimage:focal-1.1.0 as rust-builder
 LABEL maintainer="Unique.Network"
 
-ARG RUST_TOOLCHAIN=nightly-2022-04-07
+ARG RUST_TOOLCHAIN=nightly-2022-05-11
 #ARG RUST_C=1.62.0-nightly
-ARG POLKA_VERSION=release-v0.9.23
+ARG POLKA_VERSION=release-v0.9.24
 ARG UNIQUE_BRANCH=develop
 
 #ARG USER=***
modifiedREADME.mddiffbeforeafterboth
--- a/README.md
+++ b/README.md
@@ -91,7 +91,7 @@
 ```
 git clone https://github.com/paritytech/polkadot.git
 cd polkadot
-git checkout release-v0.9.23
+git checkout release-v0.9.24
 cargo build --release
 ```
 
modifiednode/cli/Cargo.tomldiffbeforeafterboth
--- a/node/cli/Cargo.toml
+++ b/node/cli/Cargo.toml
@@ -291,7 +291,7 @@
 license = 'GPLv3'
 name = 'unique-node'
 repository = 'https://github.com/UniqueNetwork/unique-chain'
-version = '0.9.23'
+version = '0.9.24'
 
 [[bin]]
 name = 'unique-collator'
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.9.23'1011[features]12default = ['std']13std = [14    'sp-core/std',15    'sp-std/std',16    'sp-runtime/std',17    'codec/std',18    'frame-support/std',19    'frame-system/std',20    'sp-consensus-aura/std',21    'pallet-common/std',22    'pallet-unique/std',23    'pallet-fungible/std',24    'pallet-nonfungible/std',25    'pallet-refungible/std',26    'up-data-structs/std',27    'pallet-evm/std',28    'fp-rpc/std',29]30runtime-benchmarks = [31    'sp-runtime/runtime-benchmarks',32    'frame-support/runtime-benchmarks',33    'frame-system/runtime-benchmarks',34]3536[dependencies.sp-core]37default-features = false38git = "https://github.com/paritytech/substrate"39branch = "polkadot-v0.9.24"4041[dependencies.sp-std]42default-features = false43git = 'https://github.com/paritytech/substrate'44branch = 'polkadot-v0.9.24'4546[dependencies.sp-runtime]47default-features = false48git = "https://github.com/paritytech/substrate"49branch = "polkadot-v0.9.24"5051[dependencies.codec]52default-features = false53features = ['derive']54package = 'parity-scale-codec'55version = '3.1.2'5657[dependencies.scale-info]58default-features = false59features = ["derive"]60version = "2.0.1"6162[dependencies.frame-support]63default-features = false64git = "https://github.com/paritytech/substrate"65branch = "polkadot-v0.9.24"6667[dependencies.frame-system]68default-features = false69git = "https://github.com/paritytech/substrate"70branch = "polkadot-v0.9.24"7172[dependencies.pallet-common]73default-features = false74path = "../../pallets/common"7576[dependencies.pallet-unique]77default-features = false78path = "../../pallets/unique"7980[dependencies.pallet-fungible]81default-features = false82path = "../../pallets/fungible"8384[dependencies.pallet-nonfungible]85default-features = false86path = "../../pallets/nonfungible"8788[dependencies.pallet-refungible]89default-features = false90path = "../../pallets/refungible"9192[dependencies.pallet-unique-scheduler]93default-features = false94path = "../../pallets/scheduler"9596[dependencies.up-data-structs]97default-features = false98path = "../../primitives/data-structs"99100[dependencies.sp-consensus-aura]101default-features = false102git = "https://github.com/paritytech/substrate"103branch = "polkadot-v0.9.24"104105[dependencies.fp-rpc]106default-features = false107git = "https://github.com/uniquenetwork/frontier"108branch = "unique-polkadot-v0.9.24"109110[dependencies]111pallet-evm = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.24" }112evm-coder = { default-features = false, path = '../../crates/evm-coder' }113up-sponsorship = { default-features = false, git = "https://github.com/UniqueNetwork/pallet-sponsoring", branch = 'polkadot-v0.9.24' }114115rmrk-rpc = { default-features = false, path = "../../primitives/rmrk-rpc" }
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.24'1011[features]12default = ['std']13std = [14    'sp-core/std',15    'sp-std/std',16    'sp-runtime/std',17    'codec/std',18    'frame-support/std',19    'frame-system/std',20    'sp-consensus-aura/std',21    'pallet-common/std',22    'pallet-unique/std',23    'pallet-fungible/std',24    'pallet-nonfungible/std',25    'pallet-refungible/std',26    'up-data-structs/std',27    'pallet-evm/std',28    'fp-rpc/std',29]30runtime-benchmarks = [31    'sp-runtime/runtime-benchmarks',32    'frame-support/runtime-benchmarks',33    'frame-system/runtime-benchmarks',34]3536[dependencies.sp-core]37default-features = false38git = "https://github.com/paritytech/substrate"39branch = "polkadot-v0.9.24"4041[dependencies.sp-std]42default-features = false43git = 'https://github.com/paritytech/substrate'44branch = 'polkadot-v0.9.24'4546[dependencies.sp-runtime]47default-features = false48git = "https://github.com/paritytech/substrate"49branch = "polkadot-v0.9.24"5051[dependencies.codec]52default-features = false53features = ['derive']54package = 'parity-scale-codec'55version = '3.1.2'5657[dependencies.scale-info]58default-features = false59features = ["derive"]60version = "2.0.1"6162[dependencies.frame-support]63default-features = false64git = "https://github.com/paritytech/substrate"65branch = "polkadot-v0.9.24"6667[dependencies.frame-system]68default-features = false69git = "https://github.com/paritytech/substrate"70branch = "polkadot-v0.9.24"7172[dependencies.pallet-common]73default-features = false74path = "../../pallets/common"7576[dependencies.pallet-unique]77default-features = false78path = "../../pallets/unique"7980[dependencies.pallet-fungible]81default-features = false82path = "../../pallets/fungible"8384[dependencies.pallet-nonfungible]85default-features = false86path = "../../pallets/nonfungible"8788[dependencies.pallet-refungible]89default-features = false90path = "../../pallets/refungible"9192[dependencies.pallet-unique-scheduler]93default-features = false94path = "../../pallets/scheduler"9596[dependencies.up-data-structs]97default-features = false98path = "../../primitives/data-structs"99100[dependencies.sp-consensus-aura]101default-features = false102git = "https://github.com/paritytech/substrate"103branch = "polkadot-v0.9.24"104105[dependencies.fp-rpc]106default-features = false107git = "https://github.com/uniquenetwork/frontier"108branch = "unique-polkadot-v0.9.24"109110[dependencies]111pallet-evm = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.24" }112evm-coder = { default-features = false, path = '../../crates/evm-coder' }113up-sponsorship = { default-features = false, git = "https://github.com/UniqueNetwork/pallet-sponsoring", branch = 'polkadot-v0.9.24' }114115rmrk-rpc = { default-features = false, path = "../../primitives/rmrk-rpc" }
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.9.23'
+version = '0.9.24'
 
 [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
@@ -192,7 +192,7 @@
 	spec_name: create_runtime_str!(RUNTIME_NAME),
 	impl_name: create_runtime_str!(RUNTIME_NAME),
 	authoring_version: 1,
-	spec_version: 923000,
+	spec_version: 924000,
 	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.9.23'
+version = '0.9.24'
 
 [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
@@ -191,7 +191,7 @@
 	spec_name: create_runtime_str!(RUNTIME_NAME),
 	impl_name: create_runtime_str!(RUNTIME_NAME),
 	authoring_version: 1,
-	spec_version: 923000,
+	spec_version: 924000,
 	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.23'
+version = '0.9.24'
 
 [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
@@ -190,7 +190,7 @@
 	spec_name: create_runtime_str!(RUNTIME_NAME),
 	impl_name: create_runtime_str!(RUNTIME_NAME),
 	authoring_version: 1,
-	spec_version: 923000,
+	spec_version: 924000,
 	impl_version: 0,
 	apis: RUNTIME_API_VERSIONS,
 	transaction_version: 1,
modifiedtests/README.mddiffbeforeafterboth
--- a/tests/README.md
+++ b/tests/README.md
@@ -5,10 +5,10 @@
 1. Checkout polkadot in sibling folder with this project
 ```bash
 git clone https://github.com/paritytech/polkadot.git && cd polkadot
-git checkout release-v0.9.23
+git checkout release-v0.9.24
 ```
 
-2. Build with nightly-2021-11-11
+2. Build with nightly-2022-05-11
 ```bash
 cargo build --release
 ```