git.delta.rocks / unique-network / refs/commits / 81ed8372cf3b

difftreelog

release v920000

Igor Kozyrev2022-05-06parent: #2646448.patch.diff
in: master

12 files changed

modified.envdiffbeforeafterboth
1RUST_TOOLCHAIN=nightly-2021-11-111RUST_TOOLCHAIN=nightly-2022-04-07
2RUST_C=1.58.0-nightly2RUST_C=1.62.0-nightly
3POLKA_VERSION=release-v0.9.183POLKA_VERSION=release-v0.9.20
4UNIQUE_BRANCH=develop4UNIQUE_BRANCH=develop
5USER=***5USER=***
6PASS=***6PASS=***
modifiedCargo.lockdiffbeforeafterboth
54755475
5476[[package]]5476[[package]]
5477name = "opal-runtime"5477name = "opal-runtime"
5478version = "0.9.18"5478version = "0.9.20"
5479dependencies = [5479dependencies = [
5480 "cumulus-pallet-aura-ext",5480 "cumulus-pallet-aura-ext",
5481 "cumulus-pallet-dmp-queue",5481 "cumulus-pallet-dmp-queue",
86828682
8683[[package]]8683[[package]]
8684name = "quartz-runtime"8684name = "quartz-runtime"
8685version = "0.9.18"8685version = "0.9.20"
8686dependencies = [8686dependencies = [
8687 "cumulus-pallet-aura-ext",8687 "cumulus-pallet-aura-ext",
8688 "cumulus-pallet-dmp-queue",8688 "cumulus-pallet-dmp-queue",
1251512515
12516[[package]]12516[[package]]
12517name = "unique-node"12517name = "unique-node"
12518version = "0.9.18"12518version = "0.9.20"
12519dependencies = [12519dependencies = [
12520 "clap",12520 "clap",
12521 "cumulus-client-cli",12521 "cumulus-client-cli",
1272512725
12726[[package]]12726[[package]]
12727name = "unique-runtime-common"12727name = "unique-runtime-common"
12728version = "0.9.18"12728version = "0.9.20"
12729dependencies = [12729dependencies = [
12730 "fp-rpc",12730 "fp-rpc",
12731 "frame-support",12731 "frame-support",
modifiedDockerfile-parachaindiffbeforeafterboth
2FROM phusion/baseimage:focal-1.1.0 as rust-builder2FROM phusion/baseimage:focal-1.1.0 as rust-builder
3LABEL maintainer="Unique.Network"3LABEL maintainer="Unique.Network"
44
5ARG RUST_TOOLCHAIN=nightly-2021-11-115ARG RUST_TOOLCHAIN=nightly-2022-04-07
6#ARG RUST_C=1.58.0-nightly6#ARG RUST_C=1.62.0-nightly
7ARG POLKA_VERSION=release-v0.9.187ARG POLKA_VERSION=release-v0.9.20
8ARG UNIQUE_BRANCH=develop8ARG UNIQUE_BRANCH=develop
99
10#ARG USER=***10#ARG USER=***
modifiedREADME.mddiffbeforeafterboth
513. Install install nightly 2021-11-11 and make it default:513. Install install nightly 2021-11-11 and make it default:
5252
53```bash53```bash
54rustup toolchain install nightly-2021-11-1154rustup toolchain install nightly-2022-04-07
55rustup default nightly-2021-11-1155rustup default nightly-2022-04-07
56```56```
5757
584. Add wasm target for nightly toolchain:584. Add wasm target for nightly toolchain:
5959
60```bash60```bash
61rustup target add wasm32-unknown-unknown --toolchain nightly-2021-11-1161rustup target add wasm32-unknown-unknown --toolchain nightly-2022-04-07
62```62```
6363
645. Build:645. Build:
81```81```
82git clone https://github.com/paritytech/polkadot.git82git clone https://github.com/paritytech/polkadot.git
83cd polkadot83cd polkadot
84git checkout release-v0.9.1884git checkout release-v0.9.20
85cargo build --release85cargo build --release
86```86```
8787
modifiednode/cli/Cargo.tomldiffbeforeafterboth
283license = 'GPLv3'283license = 'GPLv3'
284name = 'unique-node'284name = 'unique-node'
285repository = 'https://github.com/UniqueNetwork/unique-chain'285repository = 'https://github.com/UniqueNetwork/unique-chain'
286version = '0.9.18'286version = '0.9.20'
287287
288[[bin]]288[[bin]]
289name = 'unique-collator'289name = 'unique-collator'
modifiedruntime/common/Cargo.tomldiffbeforeafterboth
6license = 'All Rights Reserved'6license = 'All Rights Reserved'
7name = 'unique-runtime-common'7name = 'unique-runtime-common'
8repository = 'https://github.com/UniqueNetwork/unique-chain'8repository = 'https://github.com/UniqueNetwork/unique-chain'
9version = '0.9.18'9version = '0.9.20'
1010
11[features]11[features]
12default = ['std']12default = ['std']
modifiedruntime/opal/Cargo.tomldiffbeforeafterboth
10license = 'GPLv3'10license = 'GPLv3'
11name = 'opal-runtime'11name = 'opal-runtime'
12repository = 'https://github.com/UniqueNetwork/unique-chain'12repository = 'https://github.com/UniqueNetwork/unique-chain'
13version = '0.9.18'13version = '0.9.20'
1414
15[package.metadata.docs.rs]15[package.metadata.docs.rs]
16targets = ['x86_64-unknown-linux-gnu']16targets = ['x86_64-unknown-linux-gnu']
modifiedruntime/opal/src/lib.rsdiffbeforeafterboth
169 spec_name: create_runtime_str!(RUNTIME_NAME),169 spec_name: create_runtime_str!(RUNTIME_NAME),
170 impl_name: create_runtime_str!(RUNTIME_NAME),170 impl_name: create_runtime_str!(RUNTIME_NAME),
171 authoring_version: 1,171 authoring_version: 1,
172 spec_version: 918010,172 spec_version: 920000,
173 impl_version: 0,173 impl_version: 0,
174 apis: RUNTIME_API_VERSIONS,174 apis: RUNTIME_API_VERSIONS,
175 transaction_version: 1,175 transaction_version: 1,
modifiedruntime/quartz/Cargo.tomldiffbeforeafterboth
10license = 'GPLv3'10license = 'GPLv3'
11name = 'quartz-runtime'11name = 'quartz-runtime'
12repository = 'https://github.com/UniqueNetwork/unique-chain'12repository = 'https://github.com/UniqueNetwork/unique-chain'
13version = '0.9.18'13version = '0.9.20'
1414
15[package.metadata.docs.rs]15[package.metadata.docs.rs]
16targets = ['x86_64-unknown-linux-gnu']16targets = ['x86_64-unknown-linux-gnu']
modifiedruntime/quartz/src/lib.rsdiffbeforeafterboth
154 spec_name: create_runtime_str!(RUNTIME_NAME),154 spec_name: create_runtime_str!(RUNTIME_NAME),
155 impl_name: create_runtime_str!(RUNTIME_NAME),155 impl_name: create_runtime_str!(RUNTIME_NAME),
156 authoring_version: 1,156 authoring_version: 1,
157 spec_version: 918010,157 spec_version: 920000,
158 impl_version: 0,158 impl_version: 0,
159 apis: RUNTIME_API_VERSIONS,159 apis: RUNTIME_API_VERSIONS,
160 transaction_version: 1,160 transaction_version: 1,
modifiedruntime/unique/src/lib.rsdiffbeforeafterboth
153 spec_name: create_runtime_str!(RUNTIME_NAME),153 spec_name: create_runtime_str!(RUNTIME_NAME),
154 impl_name: create_runtime_str!(RUNTIME_NAME),154 impl_name: create_runtime_str!(RUNTIME_NAME),
155 authoring_version: 1,155 authoring_version: 1,
156 spec_version: 918010,156 spec_version: 920000,
157 impl_version: 0,157 impl_version: 0,
158 apis: RUNTIME_API_VERSIONS,158 apis: RUNTIME_API_VERSIONS,
159 transaction_version: 1,159 transaction_version: 1,
modifiedtests/README.mddiffbeforeafterboth
51. Checkout polkadot in sibling folder with this project51. Checkout polkadot in sibling folder with this project
6```bash6```bash
7git clone https://github.com/paritytech/polkadot.git && cd polkadot7git clone https://github.com/paritytech/polkadot.git && cd polkadot
8git checkout release-v0.9.188git checkout release-v0.9.20
9```9```
1010
112. Build with nightly-2021-11-11112. Build with nightly-2021-11-11