forked from paritytech/substrate
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
v0.17.18: Update latest substrate (paritytech#776)
* update latest substrate polkadot-master * fix test compilation * bump version to 0.7.18 * bump impl_version * update substrate * Revert "Instantiate environment with asynchronous API (paritytech#768)" This reverts commit 989db4b. * update substrate * remove unused parameter type * bump trie-db version for tests * fix collator test * update substrate * remove unnecessary service changes
- Loading branch information
1 parent
a169ae5
commit fc100e6
Showing
24 changed files
with
656 additions
and
595 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ path = "src/main.rs" | |
|
||
[package] | ||
name = "polkadot" | ||
version = "0.7.17" | ||
version = "0.7.18" | ||
authors = ["Parity Technologies <[email protected]>"] | ||
build = "build.rs" | ||
edition = "2018" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
[package] | ||
name = "polkadot-availability-store" | ||
description = "Persistent database for parachain data" | ||
version = "0.7.17" | ||
version = "0.7.18" | ||
authors = ["Parity Technologies <[email protected]>"] | ||
edition = "2018" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "polkadot-cli" | ||
version = "0.7.17" | ||
version = "0.7.18" | ||
authors = ["Parity Technologies <[email protected]>"] | ||
description = "Polkadot node implementation in Rust." | ||
edition = "2018" | ||
|
@@ -23,7 +23,7 @@ sc-client-db = { git = "https://github.com/paritytech/substrate", branch = "polk | |
sc-executor = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } | ||
service = { package = "polkadot-service", path = "../service", default-features = false } | ||
|
||
tokio = { version = "0.2", features = ["rt-threaded"], optional = true } | ||
tokio = { version = "0.1.22", optional = true } | ||
|
||
wasm-bindgen = { version = "0.2.57", optional = true } | ||
wasm-bindgen-futures = { version = "0.4.7", optional = true } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "polkadot-collator" | ||
version = "0.7.17" | ||
version = "0.7.18" | ||
authors = ["Parity Technologies <[email protected]>"] | ||
description = "Collator node implementation" | ||
edition = "2018" | ||
|
@@ -21,7 +21,7 @@ polkadot-network = { path = "../network" } | |
polkadot-validation = { path = "../validation" } | ||
polkadot-service = { path = "../service" } | ||
log = "0.4.8" | ||
tokio = "0.2" | ||
tokio = "0.1.22" | ||
futures-timer = "1.0" | ||
codec = { package = "parity-scale-codec", version = "1.1.0" } | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "polkadot-erasure-coding" | ||
version = "0.7.17" | ||
version = "0.7.18" | ||
authors = ["Parity Technologies <[email protected]>"] | ||
edition = "2018" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "polkadot-network" | ||
version = "0.7.17" | ||
version = "0.7.18" | ||
authors = ["Parity Technologies <[email protected]>"] | ||
description = "Polkadot-specific networking protocol" | ||
edition = "2018" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "polkadot-parachain" | ||
version = "0.7.17" | ||
version = "0.7.18" | ||
authors = ["Parity Technologies <[email protected]>"] | ||
description = "Types and utilities for creating and working with parachains" | ||
edition = "2018" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "polkadot-primitives" | ||
version = "0.7.17" | ||
version = "0.7.18" | ||
authors = ["Parity Technologies <[email protected]>"] | ||
edition = "2018" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "polkadot-rpc" | ||
version = "0.7.17" | ||
version = "0.7.18" | ||
authors = ["Parity Technologies <[email protected]>"] | ||
edition = "2018" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "polkadot-runtime-common" | ||
version = "0.7.17" | ||
version = "0.7.18" | ||
authors = ["Parity Technologies <[email protected]>"] | ||
edition = "2018" | ||
|
||
|
@@ -41,7 +41,7 @@ babe = { package = "pallet-babe", git = "https://github.com/paritytech/substrate | |
randomness-collective-flip = { package = "pallet-randomness-collective-flip", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } | ||
pallet-staking-reward-curve = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } | ||
treasury = { package = "pallet-treasury", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" } | ||
trie-db = "0.18.0" | ||
trie-db = "0.19.2" | ||
serde_json = "1.0.41" | ||
|
||
[features] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "kusama-runtime" | ||
version = "0.7.17" | ||
version = "0.7.18" | ||
authors = ["Parity Technologies <[email protected]>"] | ||
edition = "2018" | ||
build = "build.rs" | ||
|
@@ -69,7 +69,7 @@ libsecp256k1 = "0.3.2" | |
tiny-keccak = "1.5.0" | ||
keyring = { package = "sp-keyring", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } | ||
sp-trie = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } | ||
trie-db = "0.18.0" | ||
trie-db = "0.19.2" | ||
serde_json = "1.0.41" | ||
|
||
[build-dependencies] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "polkadot-runtime" | ||
version = "0.7.17" | ||
version = "0.7.18" | ||
authors = ["Parity Technologies <[email protected]>"] | ||
edition = "2018" | ||
build = "build.rs" | ||
|
@@ -66,7 +66,7 @@ libsecp256k1 = "0.3.2" | |
tiny-keccak = "1.5.0" | ||
keyring = { package = "sp-keyring", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } | ||
sp-trie = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" } | ||
trie-db = "0.18.0" | ||
trie-db = "0.19.2" | ||
serde_json = "1.0.41" | ||
|
||
[build-dependencies] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "polkadot-service" | ||
version = "0.7.17" | ||
version = "0.7.18" | ||
authors = ["Parity Technologies <[email protected]>"] | ||
edition = "2018" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "polkadot-statement-table" | ||
version = "0.7.17" | ||
version = "0.7.18" | ||
authors = ["Parity Technologies <[email protected]>"] | ||
edition = "2018" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "adder" | ||
version = "0.7.17" | ||
version = "0.7.18" | ||
authors = ["Parity Technologies <[email protected]>"] | ||
description = "Test parachain which adds to a number as its state transition" | ||
edition = "2018" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "halt" | ||
version = "0.7.17" | ||
version = "0.7.18" | ||
authors = ["Parity Technologies <[email protected]>"] | ||
description = "Test parachain which executes forever" | ||
edition = "2018" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "polkadot-validation" | ||
version = "0.7.17" | ||
version = "0.7.18" | ||
authors = ["Parity Technologies <[email protected]>"] | ||
edition = "2018" | ||
|
||
|