difftreelog
release v920000
in: master
12 files changed
.envdiffbeforeafterboth--- a/.env
+++ b/.env
@@ -1,6 +1,6 @@
-RUST_TOOLCHAIN=nightly-2021-11-11
-RUST_C=1.58.0-nightly
-POLKA_VERSION=release-v0.9.18
+RUST_TOOLCHAIN=nightly-2022-04-07
+RUST_C=1.62.0-nightly
+POLKA_VERSION=release-v0.9.20
UNIQUE_BRANCH=develop
USER=***
PASS=***
Cargo.lockdiffbeforeafterboth--- a/Cargo.lock
+++ b/Cargo.lock
@@ -5475,7 +5475,7 @@
[[package]]
name = "opal-runtime"
-version = "0.9.18"
+version = "0.9.20"
dependencies = [
"cumulus-pallet-aura-ext",
"cumulus-pallet-dmp-queue",
@@ -8682,7 +8682,7 @@
[[package]]
name = "quartz-runtime"
-version = "0.9.18"
+version = "0.9.20"
dependencies = [
"cumulus-pallet-aura-ext",
"cumulus-pallet-dmp-queue",
@@ -12515,7 +12515,7 @@
[[package]]
name = "unique-node"
-version = "0.9.18"
+version = "0.9.20"
dependencies = [
"clap",
"cumulus-client-cli",
@@ -12725,7 +12725,7 @@
[[package]]
name = "unique-runtime-common"
-version = "0.9.18"
+version = "0.9.20"
dependencies = [
"fp-rpc",
"frame-support",
Dockerfile-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-2021-11-11
-#ARG RUST_C=1.58.0-nightly
-ARG POLKA_VERSION=release-v0.9.18
+ARG RUST_TOOLCHAIN=nightly-2022-04-07
+#ARG RUST_C=1.62.0-nightly
+ARG POLKA_VERSION=release-v0.9.20
ARG UNIQUE_BRANCH=develop
#ARG USER=***
README.mddiffbeforeafterboth--- a/README.md
+++ b/README.md
@@ -51,14 +51,14 @@
3. Install install nightly 2021-11-11 and make it default:
```bash
-rustup toolchain install nightly-2021-11-11
-rustup default nightly-2021-11-11
+rustup toolchain install nightly-2022-04-07
+rustup default nightly-2022-04-07
```
4. Add wasm target for nightly toolchain:
```bash
-rustup target add wasm32-unknown-unknown --toolchain nightly-2021-11-11
+rustup target add wasm32-unknown-unknown --toolchain nightly-2022-04-07
```
5. Build:
@@ -81,7 +81,7 @@
```
git clone https://github.com/paritytech/polkadot.git
cd polkadot
-git checkout release-v0.9.18
+git checkout release-v0.9.20
cargo build --release
```
node/cli/Cargo.tomldiffbeforeafterboth--- a/node/cli/Cargo.toml
+++ b/node/cli/Cargo.toml
@@ -283,7 +283,7 @@
license = 'GPLv3'
name = 'unique-node'
repository = 'https://github.com/UniqueNetwork/unique-chain'
-version = '0.9.18'
+version = '0.9.20'
[[bin]]
name = 'unique-collator'
runtime/common/Cargo.tomldiffbeforeafterboth1[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"32branch = "polkadot-v0.9.20"3334[dependencies.sp-runtime]35default-features = false36git = "https://github.com/paritytech/substrate"37branch = "polkadot-v0.9.20"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"53branch = "polkadot-v0.9.20"5455[dependencies.frame-system]56default-features = false57git = "https://github.com/paritytech/substrate"58branch = "polkadot-v0.9.20"5960[dependencies.pallet-common]61default-features = false62path = "../../pallets/common"6364[dependencies.sp-consensus-aura]65default-features = false66git = "https://github.com/paritytech/substrate"67branch = "polkadot-v0.9.20"6869[dependencies.fp-rpc]70default-features = false71git = "https://github.com/uniquenetwork/frontier"72branch = "unique-polkadot-v0.9.20"7374[dependencies]75pallet-evm = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.20" }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.20'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"32branch = "polkadot-v0.9.20"3334[dependencies.sp-runtime]35default-features = false36git = "https://github.com/paritytech/substrate"37branch = "polkadot-v0.9.20"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"53branch = "polkadot-v0.9.20"5455[dependencies.frame-system]56default-features = false57git = "https://github.com/paritytech/substrate"58branch = "polkadot-v0.9.20"5960[dependencies.pallet-common]61default-features = false62path = "../../pallets/common"6364[dependencies.sp-consensus-aura]65default-features = false66git = "https://github.com/paritytech/substrate"67branch = "polkadot-v0.9.20"6869[dependencies.fp-rpc]70default-features = false71git = "https://github.com/uniquenetwork/frontier"72branch = "unique-polkadot-v0.9.20"7374[dependencies]75pallet-evm = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.20" }runtime/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.18'
+version = '0.9.20'
[package.metadata.docs.rs]
targets = ['x86_64-unknown-linux-gnu']
runtime/opal/src/lib.rsdiffbeforeafterboth--- a/runtime/opal/src/lib.rs
+++ b/runtime/opal/src/lib.rs
@@ -169,7 +169,7 @@
spec_name: create_runtime_str!(RUNTIME_NAME),
impl_name: create_runtime_str!(RUNTIME_NAME),
authoring_version: 1,
- spec_version: 918010,
+ spec_version: 920000,
impl_version: 0,
apis: RUNTIME_API_VERSIONS,
transaction_version: 1,
runtime/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.18'
+version = '0.9.20'
[package.metadata.docs.rs]
targets = ['x86_64-unknown-linux-gnu']
runtime/quartz/src/lib.rsdiffbeforeafterboth--- a/runtime/quartz/src/lib.rs
+++ b/runtime/quartz/src/lib.rs
@@ -154,7 +154,7 @@
spec_name: create_runtime_str!(RUNTIME_NAME),
impl_name: create_runtime_str!(RUNTIME_NAME),
authoring_version: 1,
- spec_version: 918010,
+ spec_version: 920000,
impl_version: 0,
apis: RUNTIME_API_VERSIONS,
transaction_version: 1,
runtime/unique/src/lib.rsdiffbeforeafterboth--- a/runtime/unique/src/lib.rs
+++ b/runtime/unique/src/lib.rs
@@ -153,7 +153,7 @@
spec_name: create_runtime_str!(RUNTIME_NAME),
impl_name: create_runtime_str!(RUNTIME_NAME),
authoring_version: 1,
- spec_version: 918010,
+ spec_version: 920000,
impl_version: 0,
apis: RUNTIME_API_VERSIONS,
transaction_version: 1,
tests/README.mddiffbeforeafterboth--- a/tests/README.md
+++ b/tests/README.md
@@ -5,7 +5,7 @@
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.18
+git checkout release-v0.9.20
```
2. Build with nightly-2021-11-11