git.delta.rocks / unique-network / refs/commits / 369dcdd8c314

difftreelog

release v921000

Igor Kozyrev2022-05-12parent: #71f425f.patch.diff
in: master

12 files changed

modified.envdiffbeforeafterboth
1RUST_TOOLCHAIN=nightly-2022-04-071RUST_TOOLCHAIN=nightly-2022-04-07
2RUST_C=1.62.0-nightly2RUST_C=1.62.0-nightly
3POLKA_VERSION=release-v0.9.203POLKA_VERSION=release-v0.9.21
4UNIQUE_BRANCH=develop4UNIQUE_BRANCH=develop
5USER=***5USER=***
6PASS=***6PASS=***
modifiedCargo.lockdiffbeforeafterboth
54765476
5477[[package]]5477[[package]]
5478name = "opal-runtime"5478name = "opal-runtime"
5479version = "0.9.20"5479version = "0.9.21"
5480dependencies = [5480dependencies = [
5481 "cumulus-pallet-aura-ext",5481 "cumulus-pallet-aura-ext",
5482 "cumulus-pallet-dmp-queue",5482 "cumulus-pallet-dmp-queue",
87638763
8764[[package]]8764[[package]]
8765name = "quartz-runtime"8765name = "quartz-runtime"
8766version = "0.9.20"8766version = "0.9.21"
8767dependencies = [8767dependencies = [
8768 "cumulus-pallet-aura-ext",8768 "cumulus-pallet-aura-ext",
8769 "cumulus-pallet-dmp-queue",8769 "cumulus-pallet-dmp-queue",
1268312683
12684[[package]]12684[[package]]
12685name = "unique-node"12685name = "unique-node"
12686version = "0.9.20"12686version = "0.9.21"
12687dependencies = [12687dependencies = [
12688 "clap",12688 "clap",
12689 "cumulus-client-cli",12689 "cumulus-client-cli",
1290212902
12903[[package]]12903[[package]]
12904name = "unique-runtime-common"12904name = "unique-runtime-common"
12905version = "0.9.20"12905version = "0.9.21"
12906dependencies = [12906dependencies = [
12907 "evm-coder",12907 "evm-coder",
12908 "fp-rpc",12908 "fp-rpc",
modifiedDockerfile-parachaindiffbeforeafterboth
44
5ARG RUST_TOOLCHAIN=nightly-2022-04-075ARG RUST_TOOLCHAIN=nightly-2022-04-07
6#ARG RUST_C=1.62.0-nightly6#ARG RUST_C=1.62.0-nightly
7ARG POLKA_VERSION=release-v0.9.207ARG POLKA_VERSION=release-v0.9.21
8ARG UNIQUE_BRANCH=develop8ARG UNIQUE_BRANCH=develop
99
10#ARG USER=***10#ARG USER=***
modifiedREADME.mddiffbeforeafterboth
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.2084git checkout release-v0.9.21
85cargo build --release85cargo build --release
86```86```
8787
modifiednode/cli/Cargo.tomldiffbeforeafterboth
287license = 'GPLv3'287license = 'GPLv3'
288name = 'unique-node'288name = 'unique-node'
289repository = 'https://github.com/UniqueNetwork/unique-chain'289repository = 'https://github.com/UniqueNetwork/unique-chain'
290version = '0.9.20'290version = '0.9.21'
291291
292[[bin]]292[[bin]]
293name = 'unique-collator'293name = '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.20'9version = '0.9.21'
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.20'13version = '0.9.21'
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
178 spec_name: create_runtime_str!(RUNTIME_NAME),178 spec_name: create_runtime_str!(RUNTIME_NAME),
179 impl_name: create_runtime_str!(RUNTIME_NAME),179 impl_name: create_runtime_str!(RUNTIME_NAME),
180 authoring_version: 1,180 authoring_version: 1,
181 spec_version: 920000,181 spec_version: 921000,
182 impl_version: 0,182 impl_version: 0,
183 apis: RUNTIME_API_VERSIONS,183 apis: RUNTIME_API_VERSIONS,
184 transaction_version: 1,184 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.20'13version = '0.9.21'
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
163 spec_name: create_runtime_str!(RUNTIME_NAME),163 spec_name: create_runtime_str!(RUNTIME_NAME),
164 impl_name: create_runtime_str!(RUNTIME_NAME),164 impl_name: create_runtime_str!(RUNTIME_NAME),
165 authoring_version: 1,165 authoring_version: 1,
166 spec_version: 920000,166 spec_version: 921000,
167 impl_version: 0,167 impl_version: 0,
168 apis: RUNTIME_API_VERSIONS,168 apis: RUNTIME_API_VERSIONS,
169 transaction_version: 1,169 transaction_version: 1,
modifiedruntime/unique/src/lib.rsdiffbeforeafterboth
168 spec_name: create_runtime_str!(RUNTIME_NAME),168 spec_name: create_runtime_str!(RUNTIME_NAME),
169 impl_name: create_runtime_str!(RUNTIME_NAME),169 impl_name: create_runtime_str!(RUNTIME_NAME),
170 authoring_version: 1,170 authoring_version: 1,
171 spec_version: 920000,171 spec_version: 921000,
172 impl_version: 0,172 impl_version: 0,
173 apis: RUNTIME_API_VERSIONS,173 apis: RUNTIME_API_VERSIONS,
174 transaction_version: 1,174 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.208git checkout release-v0.9.21
9```9```
1010
112. Build with nightly-2021-11-11112. Build with nightly-2021-11-11