Skip to content
This repository has been archived by the owner on Nov 15, 2023. It is now read-only.

Commit

Permalink
Patch 0.7.31 (#1042)
Browse files Browse the repository at this point in the history
* patch release

* update toml files

* update package versions
  • Loading branch information
NikVolf authored Apr 27, 2020
1 parent 0353c97 commit 99681c1
Show file tree
Hide file tree
Showing 24 changed files with 508 additions and 508 deletions.
290 changes: 145 additions & 145 deletions Cargo.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ path = "src/main.rs"

[package]
name = "polkadot"
version = "0.7.30"
version = "0.7.31"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"

Expand Down
20 changes: 10 additions & 10 deletions availability-store/Cargo.toml
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.30"
version = "0.7.31"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"

Expand All @@ -15,15 +15,15 @@ futures = "0.3.4"
tokio = { version = "0.2.13", features = ["rt-core"] }
exit-future = "0.2.0"
codec = { package = "parity-scale-codec", version = "1.3.0", features = ["derive"] }
sc-network = { git = "https://github.com/paritytech/substrate", branch = "master" }
consensus_common = { package = "sp-consensus", git = "https://github.com/paritytech/substrate", branch = "master" }
client = { package = "sc-client-api", git = "https://github.com/paritytech/substrate", branch = "master" }
sc-client = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-api = { git = "https://github.com/paritytech/substrate", branch = "master" }
keystore = { package = "sc-keystore", git = "https://github.com/paritytech/substrate", branch = "master" }
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" }
sc-network = { git = "https://github.com/paritytech/substrate", branch = "kusama-patch-0.7.30" }
consensus_common = { package = "sp-consensus", git = "https://github.com/paritytech/substrate", branch = "kusama-patch-0.7.30" }
client = { package = "sc-client-api", git = "https://github.com/paritytech/substrate", branch = "kusama-patch-0.7.30" }
sc-client = { git = "https://github.com/paritytech/substrate", branch = "kusama-patch-0.7.30" }
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "kusama-patch-0.7.30" }
sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "kusama-patch-0.7.30" }
sp-api = { git = "https://github.com/paritytech/substrate", branch = "kusama-patch-0.7.30" }
keystore = { package = "sc-keystore", git = "https://github.com/paritytech/substrate", branch = "kusama-patch-0.7.30" }
sp-core = { git = "https://github.com/paritytech/substrate", branch = "kusama-patch-0.7.30" }
kvdb = "0.5.0"
kvdb-memorydb = "0.5.0"

Expand Down
26 changes: 13 additions & 13 deletions cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "polkadot-cli"
version = "0.7.30"
version = "0.7.31"
authors = ["Parity Technologies <admin@parity.io>"]
description = "Polkadot Relay-chain Client Node"
edition = "2018"
Expand All @@ -17,26 +17,26 @@ crate-type = ["cdylib", "rlib"]
log = "0.4.8"
futures = { version = "0.3.4", features = ["compat"] }
structopt = "0.3.8"
sp-api = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" }
sc-client = { git = "https://github.com/paritytech/substrate", branch = "master" }
sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "master" }
sc-client-db = { git = "https://github.com/paritytech/substrate", branch = "master" }
sc-executor = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-api = { git = "https://github.com/paritytech/substrate", branch = "kusama-patch-0.7.30" }
sp-core = { git = "https://github.com/paritytech/substrate", branch = "kusama-patch-0.7.30" }
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "kusama-patch-0.7.30" }
sc-client = { git = "https://github.com/paritytech/substrate", branch = "kusama-patch-0.7.30" }
sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "kusama-patch-0.7.30" }
sc-client-db = { git = "https://github.com/paritytech/substrate", branch = "kusama-patch-0.7.30" }
sc-executor = { git = "https://github.com/paritytech/substrate", branch = "kusama-patch-0.7.30" }
service = { package = "polkadot-service", path = "../service", default-features = false }

tokio = { version = "0.2.13", features = ["rt-threaded"], optional = true }
frame-benchmarking-cli = { git = "https://github.com/paritytech/substrate", branch = "master", optional = true }
sc-cli = { git = "https://github.com/paritytech/substrate", branch = "master", optional = true }
sc-service = { git = "https://github.com/paritytech/substrate", branch = "master", optional = true }
frame-benchmarking-cli = { git = "https://github.com/paritytech/substrate", branch = "kusama-patch-0.7.30", optional = true }
sc-cli = { git = "https://github.com/paritytech/substrate", branch = "kusama-patch-0.7.30", optional = true }
sc-service = { git = "https://github.com/paritytech/substrate", branch = "kusama-patch-0.7.30", optional = true }

wasm-bindgen = { version = "0.2.57", optional = true }
wasm-bindgen-futures = { version = "0.4.7", optional = true }
browser-utils = { package = "substrate-browser-utils", git = "https://github.com/paritytech/substrate", branch = "master", optional = true }
browser-utils = { package = "substrate-browser-utils", git = "https://github.com/paritytech/substrate", branch = "kusama-patch-0.7.30", optional = true }

[build-dependencies]
substrate-build-script-utils = { git = "https://github.com/paritytech/substrate", branch = "master" }
substrate-build-script-utils = { git = "https://github.com/paritytech/substrate", branch = "kusama-patch-0.7.30" }

[features]
default = [ "wasmtime", "db", "cli" ]
Expand Down
22 changes: 11 additions & 11 deletions collator/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
[package]
name = "polkadot-collator"
version = "0.7.30"
version = "0.7.31"
authors = ["Parity Technologies <admin@parity.io>"]
description = "Collator node implementation"
edition = "2018"

[dependencies]
futures = "0.3.4"
sc-client = { git = "https://github.com/paritytech/substrate", branch = "master" }
sc-cli = { git = "https://github.com/paritytech/substrate", branch = "master" }
sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "master" }
sc-network = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-api = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" }
consensus_common = { package = "sp-consensus", git = "https://github.com/paritytech/substrate", branch = "master" }
sc-client = { git = "https://github.com/paritytech/substrate", branch = "kusama-patch-0.7.30" }
sc-cli = { git = "https://github.com/paritytech/substrate", branch = "kusama-patch-0.7.30" }
sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "kusama-patch-0.7.30" }
sc-network = { git = "https://github.com/paritytech/substrate", branch = "kusama-patch-0.7.30" }
sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "kusama-patch-0.7.30" }
sp-api = { git = "https://github.com/paritytech/substrate", branch = "kusama-patch-0.7.30" }
sp-core = { git = "https://github.com/paritytech/substrate", branch = "kusama-patch-0.7.30" }
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "kusama-patch-0.7.30" }
consensus_common = { package = "sp-consensus", git = "https://github.com/paritytech/substrate", branch = "kusama-patch-0.7.30" }
polkadot-primitives = { path = "../primitives" }
polkadot-cli = { path = "../cli" }
polkadot-network = { path = "../network" }
Expand All @@ -27,4 +27,4 @@ futures-timer = "2.0"
codec = { package = "parity-scale-codec", version = "1.3.0" }

[dev-dependencies]
keyring = { package = "sp-keyring", git = "https://github.com/paritytech/substrate", branch = "master" }
keyring = { package = "sp-keyring", git = "https://github.com/paritytech/substrate", branch = "kusama-patch-0.7.30" }
6 changes: 3 additions & 3 deletions erasure-coding/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
[package]
name = "polkadot-erasure-coding"
version = "0.7.30"
version = "0.7.31"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"

[dependencies]
primitives = { package = "polkadot-primitives", path = "../primitives" }
reed_solomon = { package = "reed-solomon-erasure", version = "4.0.2"}
codec = { package = "parity-scale-codec", version = "1.3.0", default-features = false, features = ["derive"] }
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" }
trie = { package = "sp-trie", git = "https://github.com/paritytech/substrate", branch = "master" }
sp-core = { git = "https://github.com/paritytech/substrate", branch = "kusama-patch-0.7.30" }
trie = { package = "sp-trie", git = "https://github.com/paritytech/substrate", branch = "kusama-patch-0.7.30" }
derive_more = "0.15.0"
20 changes: 10 additions & 10 deletions network/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "polkadot-network"
version = "0.7.30"
version = "0.7.31"
authors = ["Parity Technologies <admin@parity.io>"]
description = "Polkadot-specific networking protocol"
edition = "2018"
Expand All @@ -15,19 +15,19 @@ polkadot-validation = { path = "../validation" }
polkadot-primitives = { path = "../primitives" }
polkadot-erasure-coding = { path = "../erasure-coding" }
codec = { package = "parity-scale-codec", version = "1.3.0", default-features = false, features = ["derive"] }
sc-network = { git = "https://github.com/paritytech/substrate", branch = "master" }
sc-network-gossip = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" }
sc-network = { git = "https://github.com/paritytech/substrate", branch = "kusama-patch-0.7.30" }
sc-network-gossip = { git = "https://github.com/paritytech/substrate", branch = "kusama-patch-0.7.30" }
sp-core = { git = "https://github.com/paritytech/substrate", branch = "kusama-patch-0.7.30" }
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "kusama-patch-0.7.30" }
futures = "0.3.4"
log = "0.4.8"
exit-future = "0.2.0"
futures-timer = "2.0"
sc-client = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-api = { git = "https://github.com/paritytech/substrate", branch = "master" }
sc-client = { git = "https://github.com/paritytech/substrate", branch = "kusama-patch-0.7.30" }
sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "kusama-patch-0.7.30" }
sp-api = { git = "https://github.com/paritytech/substrate", branch = "kusama-patch-0.7.30" }
wasm-timer = "0.2.4"

[dev-dependencies]
sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-state-machine = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "kusama-patch-0.7.30" }
sp-state-machine = { git = "https://github.com/paritytech/substrate", branch = "kusama-patch-0.7.30" }
18 changes: 9 additions & 9 deletions network/test/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,14 @@ log = "0.4.8"
parking_lot = "0.10.0"
futures = "0.3.1"
rand = "0.7.2"
sc-network = { git = "https://github.com/paritytech/substrate", branch = "master" }
sc-network-test = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "master" }
sc-client = { git = "https://github.com/paritytech/substrate", branch = "master" }
sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" }
sc-block-builder = { git = "https://github.com/paritytech/substrate", branch = "master" }
sc-network = { git = "https://github.com/paritytech/substrate", branch = "kusama-patch-0.7.30" }
sc-network-test = { git = "https://github.com/paritytech/substrate", branch = "kusama-patch-0.7.30" }
sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "kusama-patch-0.7.30" }
sc-client = { git = "https://github.com/paritytech/substrate", branch = "kusama-patch-0.7.30" }
sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "kusama-patch-0.7.30" }
sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "kusama-patch-0.7.30" }
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "kusama-patch-0.7.30" }
sp-core = { git = "https://github.com/paritytech/substrate", branch = "kusama-patch-0.7.30" }
sc-block-builder = { git = "https://github.com/paritytech/substrate", branch = "kusama-patch-0.7.30" }
env_logger = "0.7.0"
polkadot-test-runtime-client = { path = "../../runtime/test-runtime/client" }
16 changes: 8 additions & 8 deletions parachain/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "polkadot-parachain"
version = "0.7.30"
version = "0.7.31"
authors = ["Parity Technologies <admin@parity.io>"]
description = "Types and utilities for creating and working with parachains"
edition = "2018"
Expand All @@ -10,17 +10,17 @@ edition = "2018"
# this crate for WASM. This is critical to avoid forcing all parachain WASM into implementing
# various unnecessary Substrate-specific endpoints.
codec = { package = "parity-scale-codec", version = "1.1.0", default-features = false, features = [ "derive" ] }
sp-std = { package = "sp-std", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
sp-wasm-interface = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
sp-std = { package = "sp-std", git = "https://github.com/paritytech/substrate", branch = "kusama-patch-0.7.30", default-features = false }
sp-core = { git = "https://github.com/paritytech/substrate", branch = "kusama-patch-0.7.30", default-features = false }
sp-wasm-interface = { git = "https://github.com/paritytech/substrate", branch = "kusama-patch-0.7.30", default-features = false }

# all optional crates.
derive_more = { version = "0.99.2", optional = true }
serde = { version = "1.0.102", default-features = false, features = [ "derive" ], optional = true }
sp-runtime-interface = { git = "https://github.com/paritytech/substrate", branch = "master", optional = true, default-features = false }
sp-externalities = { git = "https://github.com/paritytech/substrate", branch = "master", optional = true }
sc-executor = { git = "https://github.com/paritytech/substrate", branch = "master", optional = true }
sp-io = { git = "https://github.com/paritytech/substrate", branch = "master", optional = true }
sp-runtime-interface = { git = "https://github.com/paritytech/substrate", branch = "kusama-patch-0.7.30", optional = true, default-features = false }
sp-externalities = { git = "https://github.com/paritytech/substrate", branch = "kusama-patch-0.7.30", optional = true }
sc-executor = { git = "https://github.com/paritytech/substrate", branch = "kusama-patch-0.7.30", optional = true }
sp-io = { git = "https://github.com/paritytech/substrate", branch = "kusama-patch-0.7.30", optional = true }
parking_lot = { version = "0.10.0", optional = true }
log = { version = "0.4.8", optional = true }

Expand Down
4 changes: 2 additions & 2 deletions parachain/test-parachains/adder/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "test-parachain-adder"
version = "0.7.30"
version = "0.7.31"
authors = ["Parity Technologies <admin@parity.io>"]
description = "Test parachain which adds to a number as its state transition"
edition = "2018"
Expand All @@ -13,7 +13,7 @@ tiny-keccak = "1.5.0"
dlmalloc = { version = "0.1.3", features = [ "global" ] }

# We need to make sure the global allocator is disabled until we have support of full substrate externalities
runtime-io = { package = "sp-io", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, features = [ "disable_allocator" ] }
runtime-io = { package = "sp-io", git = "https://github.com/paritytech/substrate", branch = "kusama-patch-0.7.30", default-features = false, features = [ "disable_allocator" ] }

[build-dependencies]
wasm-builder-runner = { package = "substrate-wasm-builder-runner", version = "1.0.5" }
Expand Down
6 changes: 3 additions & 3 deletions parachain/test-parachains/adder/collator/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ adder = { package = "test-parachain-adder", path = ".." }
parachain = { package = "polkadot-parachain", path = "../../.." }
collator = { package = "polkadot-collator", path = "../../../../collator" }
primitives = { package = "polkadot-primitives", path = "../../../../primitives" }
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" }
client = { package = "sc-client", git = "https://github.com/paritytech/substrate", branch = "master" }
client-api = { package = "sc-client-api", git = "https://github.com/paritytech/substrate", branch = "master" }
sp-core = { git = "https://github.com/paritytech/substrate", branch = "kusama-patch-0.7.30" }
client = { package = "sc-client", git = "https://github.com/paritytech/substrate", branch = "kusama-patch-0.7.30" }
client-api = { package = "sc-client-api", git = "https://github.com/paritytech/substrate", branch = "kusama-patch-0.7.30" }
parking_lot = "0.10.0"
codec = { package = "parity-scale-codec", version = "1.2.0" }
futures = "0.3.4"
2 changes: 1 addition & 1 deletion parachain/test-parachains/code-upgrader/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ tiny-keccak = "1.5.0"
dlmalloc = { version = "0.1.3", features = [ "global" ] }

# We need to make sure the global allocator is disabled until we have support of full substrate externalities
runtime-io = { package = "sp-io", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, features = [ "disable_allocator" ] }
runtime-io = { package = "sp-io", git = "https://github.com/paritytech/substrate", branch = "kusama-patch-0.7.30", default-features = false, features = [ "disable_allocator" ] }

[build-dependencies]
wasm-builder-runner = { package = "substrate-wasm-builder-runner", version = "1.0.5" }
Expand Down
2 changes: 1 addition & 1 deletion parachain/test-parachains/halt/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "test-parachain-halt"
version = "0.7.30"
version = "0.7.31"
authors = ["Parity Technologies <admin@parity.io>"]
description = "Test parachain which executes forever"
edition = "2018"
Expand Down
Loading

0 comments on commit 99681c1

Please sign in to comment.