difftreelog
release v921000
in: master
12 files changed
.envdiffbeforeafterboth1RUST_TOOLCHAIN=nightly-2022-04-071RUST_TOOLCHAIN=nightly-2022-04-072RUST_C=1.62.0-nightly2RUST_C=1.62.0-nightly3POLKA_VERSION=release-v0.9.203POLKA_VERSION=release-v0.9.214UNIQUE_BRANCH=develop4UNIQUE_BRANCH=develop5USER=***5USER=***6PASS=***6PASS=***Cargo.lockdiffbeforeafterboth547654765477[[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",876387638764[[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",126831268312684[[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",129021290212903[[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",Dockerfile-parachaindiffbeforeafterboth445ARG RUST_TOOLCHAIN=nightly-2022-04-075ARG RUST_TOOLCHAIN=nightly-2022-04-076#ARG RUST_C=1.62.0-nightly6#ARG RUST_C=1.62.0-nightly7ARG POLKA_VERSION=release-v0.9.207ARG POLKA_VERSION=release-v0.9.218ARG UNIQUE_BRANCH=develop8ARG UNIQUE_BRANCH=develop9910#ARG USER=***10#ARG USER=***README.mddiffbeforeafterboth81```81```82git clone https://github.com/paritytech/polkadot.git82git clone https://github.com/paritytech/polkadot.git83cd polkadot83cd polkadot84git checkout release-v0.9.2084git checkout release-v0.9.2185cargo build --release85cargo build --release86```86```8787node/cli/Cargo.tomldiffbeforeafterboth287license = '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'291291292[[bin]]292[[bin]]293name = 'unique-collator'293name = 'unique-collator'runtime/common/Cargo.tomldiffbeforeafterboth6license = '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'101011[features]11[features]12default = ['std']12default = ['std']runtime/opal/Cargo.tomldiffbeforeafterboth10license = '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'141415[package.metadata.docs.rs]15[package.metadata.docs.rs]16targets = ['x86_64-unknown-linux-gnu']16targets = ['x86_64-unknown-linux-gnu']runtime/opal/src/lib.rsdiffbeforeafterboth178 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,runtime/quartz/Cargo.tomldiffbeforeafterboth10license = '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'141415[package.metadata.docs.rs]15[package.metadata.docs.rs]16targets = ['x86_64-unknown-linux-gnu']16targets = ['x86_64-unknown-linux-gnu']runtime/quartz/src/lib.rsdiffbeforeafterboth163 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,runtime/unique/src/lib.rsdiffbeforeafterboth168 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,tests/README.mddiffbeforeafterboth51. Checkout polkadot in sibling folder with this project51. Checkout polkadot in sibling folder with this project6```bash6```bash7git clone https://github.com/paritytech/polkadot.git && cd polkadot7git clone https://github.com/paritytech/polkadot.git && cd polkadot8git checkout release-v0.9.208git checkout release-v0.9.219```9```1010112. Build with nightly-2021-11-11112. Build with nightly-2021-11-11