Prepping release of alpha.6 (#5629)

* bumping version

* cargo update

* adding changelog
This commit is contained in:
Benjamin Kampmann
2020-04-14 21:41:49 +02:00
committed by GitHub
parent 889a9763dd
commit 51f9bb3c0e
177 changed files with 2307 additions and 2271 deletions
+8 -8
View File
@@ -1,6 +1,6 @@
[package]
name = "substrate-browser-utils"
version = "0.8.0-alpha.5"
version = "0.8.0-alpha.6"
authors = ["Parity Technologies <admin@parity.io>"]
description = "Utilities for creating a browser light-client."
edition = "2018"
@@ -8,6 +8,9 @@ license = "GPL-3.0"
homepage = "https://substrate.dev"
repository = "https://github.com/paritytech/substrate/"
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
futures = "0.3"
futures01 = { package = "futures", version = "0.1.29" }
@@ -19,10 +22,10 @@ js-sys = "0.3.34"
wasm-bindgen = "0.2.57"
wasm-bindgen-futures = "0.4.7"
kvdb-web = "0.5"
sc-informant = { version = "0.8.0-alpha.5", path = "../../client/informant" }
sc-service = { version = "0.8.0-alpha.5", path = "../../client/service", default-features = false }
sc-network = { path = "../../client/network", version = "0.8.0-alpha.5"}
sc-chain-spec = { path = "../../client/chain-spec", version = "2.0.0-alpha.5"}
sc-informant = { version = "0.8.0-alpha.6", path = "../../client/informant" }
sc-service = { version = "0.8.0-alpha.6", path = "../../client/service", default-features = false }
sc-network = { path = "../../client/network", version = "0.8.0-alpha.6"}
sc-chain-spec = { path = "../../client/chain-spec", version = "2.0.0-alpha.6"}
# Imported just for the `no_cc` feature
clear_on_drop = { version = "0.2.3", features = ["no_cc"] }
@@ -31,6 +34,3 @@ rand6 = { package = "rand", version = "0.6", features = ["wasm-bindgen"] }
rand = { version = "0.7", features = ["wasm-bindgen"] }
futures-timer = { version = "3.0.1", features = ["wasm-bindgen"]}
chrono = { version = "0.4", features = ["wasmbind"] }
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
@@ -1,6 +1,6 @@
[package]
name = "substrate-build-script-utils"
version = "2.0.0-alpha.5"
version = "2.0.0-alpha.6"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "GPL-3.0"
@@ -8,8 +8,8 @@ homepage = "https://substrate.dev"
repository = "https://github.com/paritytech/substrate/"
description = "Crate with utility functions for `build.rs` scripts."
[dependencies]
platforms = "0.2.1"
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
platforms = "0.2.1"
+4 -4
View File
@@ -1,6 +1,6 @@
[package]
name = "fork-tree"
version = "2.0.0-alpha.5"
version = "2.0.0-alpha.6"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "GPL-3.0"
@@ -9,8 +9,8 @@ repository = "https://github.com/paritytech/substrate/"
description = "Utility library for managing tree-like ordered data with logic for pruning the tree while finalizing nodes."
documentation = "https://docs.rs/fork-tree"
[dependencies]
codec = { package = "parity-scale-codec", version = "1.3.0", features = ["derive"] }
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
codec = { package = "parity-scale-codec", version = "1.3.0", features = ["derive"] }
@@ -1,6 +1,6 @@
[package]
name = "frame-benchmarking-cli"
version = "2.0.0-alpha.5"
version = "2.0.0-alpha.6"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "GPL-3.0"
@@ -8,23 +8,23 @@ homepage = "https://substrate.dev"
repository = "https://github.com/paritytech/substrate/"
description = "CLI for benchmarking FRAME"
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
frame-benchmarking = { version = "2.0.0-alpha.5", path = "../../../frame/benchmarking" }
sp-core = { version = "2.0.0-alpha.5", path = "../../../primitives/core" }
sc-service = { version = "0.8.0-alpha.5", default-features = false, path = "../../../client/service" }
sc-cli = { version = "0.8.0-alpha.5", path = "../../../client/cli" }
sc-client = { version = "0.8.0-alpha.5", path = "../../../client" }
sc-client-db = { version = "0.8.0-alpha.5", path = "../../../client/db" }
sc-executor = { version = "0.8.0-alpha.5", path = "../../../client/executor" }
sp-externalities = { version = "0.8.0-alpha.5", path = "../../../primitives/externalities" }
sp-runtime = { version = "2.0.0-alpha.5", path = "../../../primitives/runtime" }
sp-state-machine = { version = "0.8.0-alpha.5", path = "../../../primitives/state-machine" }
frame-benchmarking = { version = "2.0.0-alpha.6", path = "../../../frame/benchmarking" }
sp-core = { version = "2.0.0-alpha.6", path = "../../../primitives/core" }
sc-service = { version = "0.8.0-alpha.6", default-features = false, path = "../../../client/service" }
sc-cli = { version = "0.8.0-alpha.6", path = "../../../client/cli" }
sc-client = { version = "0.8.0-alpha.6", path = "../../../client" }
sc-client-db = { version = "0.8.0-alpha.6", path = "../../../client/db" }
sc-executor = { version = "0.8.0-alpha.6", path = "../../../client/executor" }
sp-externalities = { version = "0.8.0-alpha.6", path = "../../../primitives/externalities" }
sp-runtime = { version = "2.0.0-alpha.6", path = "../../../primitives/runtime" }
sp-state-machine = { version = "0.8.0-alpha.6", path = "../../../primitives/state-machine" }
structopt = "0.3.8"
codec = { version = "1.3.0", package = "parity-scale-codec" }
[features]
default = ["rocksdb"]
rocksdb = ["sc-client-db/kvdb-rocksdb"]
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
+8 -8
View File
@@ -1,6 +1,6 @@
[package]
name = "substrate-frame-rpc-support"
version = "2.0.0-alpha.5"
version = "2.0.0-alpha.6"
authors = ["Parity Technologies <admin@parity.io>", "Andrew Dirksen <andrew@dirksen.com>"]
edition = "2018"
license = "GPL-3.0"
@@ -8,19 +8,19 @@ homepage = "https://substrate.dev"
repository = "https://github.com/paritytech/substrate/"
description = "Substrate RPC for FRAME's support"
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
futures = { version = "0.3.0", features = ["compat"] }
jsonrpc-client-transports = { version = "14.0.5", default-features = false, features = ["http"] }
jsonrpc-core = "14"
codec = { package = "parity-scale-codec", version = "1" }
serde = "1"
frame-support = { version = "2.0.0-alpha.5", path = "../../../../frame/support" }
sp-storage = { version = "2.0.0-alpha.5", path = "../../../../primitives/storage" }
sc-rpc-api = { version = "0.8.0-alpha.5", path = "../../../../client/rpc-api" }
frame-support = { version = "2.0.0-alpha.6", path = "../../../../frame/support" }
sp-storage = { version = "2.0.0-alpha.6", path = "../../../../primitives/storage" }
sc-rpc-api = { version = "0.8.0-alpha.6", path = "../../../../client/rpc-api" }
[dev-dependencies]
frame-system = { version = "2.0.0-alpha.5", path = "../../../../frame/system" }
frame-system = { version = "2.0.0-alpha.6", path = "../../../../frame/system" }
tokio = "0.2"
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
+12 -12
View File
@@ -1,6 +1,6 @@
[package]
name = "substrate-frame-rpc-system"
version = "2.0.0-alpha.5"
version = "2.0.0-alpha.6"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "GPL-3.0"
@@ -8,8 +8,11 @@ homepage = "https://substrate.dev"
repository = "https://github.com/paritytech/substrate/"
description = "FRAME's system exposed over Substrate RPC"
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
sc-client = { version = "0.8.0-alpha.5", path = "../../../../client/" }
sc-client = { version = "0.8.0-alpha.6", path = "../../../../client/" }
codec = { package = "parity-scale-codec", version = "1.3.0" }
futures = "0.3.4"
jsonrpc-core = "14.0.3"
@@ -17,17 +20,14 @@ jsonrpc-core-client = "14.0.5"
jsonrpc-derive = "14.0.3"
log = "0.4.8"
serde = { version = "1.0.101", features = ["derive"] }
sp-runtime = { version = "2.0.0-alpha.5", path = "../../../../primitives/runtime" }
sp-api = { version = "2.0.0-alpha.5", path = "../../../../primitives/api" }
frame-system-rpc-runtime-api = { version = "2.0.0-alpha.5", path = "../../../../frame/system/rpc/runtime-api" }
sp-core = { version = "2.0.0-alpha.5", path = "../../../../primitives/core" }
sp-blockchain = { version = "2.0.0-alpha.5", path = "../../../../primitives/blockchain" }
sp-transaction-pool = { version = "2.0.0-alpha.5", path = "../../../../primitives/transaction-pool" }
sp-runtime = { version = "2.0.0-alpha.6", path = "../../../../primitives/runtime" }
sp-api = { version = "2.0.0-alpha.6", path = "../../../../primitives/api" }
frame-system-rpc-runtime-api = { version = "2.0.0-alpha.6", path = "../../../../frame/system/rpc/runtime-api" }
sp-core = { version = "2.0.0-alpha.6", path = "../../../../primitives/core" }
sp-blockchain = { version = "2.0.0-alpha.6", path = "../../../../primitives/blockchain" }
sp-transaction-pool = { version = "2.0.0-alpha.6", path = "../../../../primitives/transaction-pool" }
[dev-dependencies]
substrate-test-runtime-client = { version = "2.0.0-dev", path = "../../../../test-utils/runtime/client" }
env_logger = "0.7.0"
sc-transaction-pool = { version = "2.0.0-alpha.5", path = "../../../../client/transaction-pool" }
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
sc-transaction-pool = { version = "2.0.0-alpha.6", path = "../../../../client/transaction-pool" }
+4 -4
View File
@@ -1,13 +1,16 @@
[package]
description = "Endpoint to expose Prometheus metrics"
name = "substrate-prometheus-endpoint"
version = "0.8.0-alpha.5"
version = "0.8.0-alpha.6"
license = "GPL-3.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
homepage = "https://substrate.dev"
repository = "https://github.com/paritytech/substrate/"
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
log = "0.4.8"
prometheus = "0.8"
@@ -18,6 +21,3 @@ derive_more = "0.99"
async-std = { version = "1.0.1", features = ["unstable"] }
hyper = { version = "0.13.1", default-features = false, features = ["stream"] }
tokio = "0.2"
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
@@ -9,7 +9,7 @@ repository = "https://github.com/paritytech/substrate/"
license = "GPL-3.0"
homepage = "https://substrate.dev"
[dependencies]
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
+3 -3
View File
@@ -9,6 +9,9 @@ repository = "https://github.com/paritytech/substrate/"
license = "GPL-3.0"
homepage = "https://substrate.dev"
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
build-helper = "0.1.1"
cargo_metadata = "0.9.0"
@@ -19,6 +22,3 @@ fs2 = "0.4.3"
wasm-gc-api = "0.1.11"
atty = "0.2.13"
itertools = "0.8.2"
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]