mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-30 09:37:55 +00:00
set missing metadata fields, prepping alpha.2 (#5067)
* setting first batch of descriptions * fix what I just broke * next batch * and pallets, too * last batch * set cargo.lock * keep'em dev-deps * bump version to alpha.2
This commit is contained in:
committed by
GitHub
parent
01c6b7cdde
commit
d6aa8e954c
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "node-template"
|
||||
version = "2.0.0-alpha.1"
|
||||
version = "2.0.0-alpha.2"
|
||||
authors = ["Anonymous"]
|
||||
edition = "2018"
|
||||
license = "Unlicense"
|
||||
@@ -16,25 +16,25 @@ futures = "0.3.1"
|
||||
log = "0.4.8"
|
||||
structopt = "0.3.8"
|
||||
|
||||
sc-cli = { version = "0.8.0-alpha.1", path = "../../../client/cli" }
|
||||
sp-core = { version = "2.0.0-alpha.1", path = "../../../primitives/core" }
|
||||
sc-executor = { version = "0.8.0-alpha.1", path = "../../../client/executor" }
|
||||
sc-service = { version = "0.8.0-alpha.1", path = "../../../client/service" }
|
||||
sp-inherents = { version = "2.0.0-alpha.1", path = "../../../primitives/inherents" }
|
||||
sc-transaction-pool = { version = "2.0.0-alpha.1", path = "../../../client/transaction-pool" }
|
||||
sp-transaction-pool = { version = "2.0.0-alpha.1", path = "../../../primitives/transaction-pool" }
|
||||
sc-network = { version = "0.8.0-alpha.1", path = "../../../client/network" }
|
||||
sc-consensus-aura = { version = "0.8.0-alpha.1", path = "../../../client/consensus/aura" }
|
||||
sp-consensus-aura = { version = "0.8.0-alpha.1", path = "../../../primitives/consensus/aura" }
|
||||
sp-consensus = { version = "0.8.0-alpha.1", path = "../../../primitives/consensus/common" }
|
||||
grandpa = { version = "0.8.0-alpha.1", package = "sc-finality-grandpa", path = "../../../client/finality-grandpa" }
|
||||
grandpa-primitives = { version = "2.0.0-alpha.1", package = "sp-finality-grandpa", path = "../../../primitives/finality-grandpa" }
|
||||
sc-client = { version = "0.8.0-alpha.1", path = "../../../client/" }
|
||||
sp-runtime = { version = "2.0.0-alpha.1", path = "../../../primitives/runtime" }
|
||||
sc-basic-authorship = { path = "../../../client/basic-authorship" , version = "0.8.0-alpha.1"}
|
||||
sc-cli = { version = "0.8.0-alpha.2", path = "../../../client/cli" }
|
||||
sp-core = { version = "2.0.0-alpha.2", path = "../../../primitives/core" }
|
||||
sc-executor = { version = "0.8.0-alpha.2", path = "../../../client/executor" }
|
||||
sc-service = { version = "0.8.0-alpha.2", path = "../../../client/service" }
|
||||
sp-inherents = { version = "2.0.0-alpha.2", path = "../../../primitives/inherents" }
|
||||
sc-transaction-pool = { version = "2.0.0-alpha.2", path = "../../../client/transaction-pool" }
|
||||
sp-transaction-pool = { version = "2.0.0-alpha.2", path = "../../../primitives/transaction-pool" }
|
||||
sc-network = { version = "0.8.0-alpha.2", path = "../../../client/network" }
|
||||
sc-consensus-aura = { version = "0.8.0-alpha.2", path = "../../../client/consensus/aura" }
|
||||
sp-consensus-aura = { version = "0.8.0-alpha.2", path = "../../../primitives/consensus/aura" }
|
||||
sp-consensus = { version = "0.8.0-alpha.2", path = "../../../primitives/consensus/common" }
|
||||
grandpa = { version = "0.8.0-alpha.2", package = "sc-finality-grandpa", path = "../../../client/finality-grandpa" }
|
||||
grandpa-primitives = { version = "2.0.0-alpha.2", package = "sp-finality-grandpa", path = "../../../primitives/finality-grandpa" }
|
||||
sc-client = { version = "0.8.0-alpha.2", path = "../../../client/" }
|
||||
sp-runtime = { version = "2.0.0-alpha.2", path = "../../../primitives/runtime" }
|
||||
sc-basic-authorship = { path = "../../../client/basic-authorship" , version = "0.8.0-alpha.2"}
|
||||
|
||||
node-template-runtime = { version = "2.0.0-alpha.1", path = "../runtime" }
|
||||
node-template-runtime = { version = "2.0.0-alpha.2", path = "../runtime" }
|
||||
|
||||
[build-dependencies]
|
||||
vergen = "3.0.4"
|
||||
build-script-utils = { version = "2.0.0-alpha.1", package = "substrate-build-script-utils", path = "../../../utils/build-script-utils" }
|
||||
build-script-utils = { version = "2.0.0-alpha.2", package = "substrate-build-script-utils", path = "../../../utils/build-script-utils" }
|
||||
|
||||
@@ -2,9 +2,11 @@
|
||||
authors = ['Anonymous']
|
||||
edition = '2018'
|
||||
name = 'pallet-template'
|
||||
version = "2.0.0-alpha.1"
|
||||
version = "2.0.0-alpha.2"
|
||||
license = "Unlicense"
|
||||
homepage = "https://substrate.dev"
|
||||
repository = "https://github.com/paritytech/substrate/"
|
||||
description = "FRAME pallet template"
|
||||
|
||||
[dependencies]
|
||||
codec = { package = "parity-scale-codec", version = "1.0.0", default-features = false, features = ["derive"] }
|
||||
@@ -12,30 +14,30 @@ safe-mix = { default-features = false, version = '1.0.0' }
|
||||
|
||||
[dependencies.frame-support]
|
||||
default-features = false
|
||||
version = "2.0.0-alpha.1"
|
||||
version = "2.0.0-alpha.2"
|
||||
path = "../../../../frame/support"
|
||||
|
||||
[dependencies.system]
|
||||
default-features = false
|
||||
package = 'frame-system'
|
||||
version = "2.0.0-alpha.1"
|
||||
version = "2.0.0-alpha.2"
|
||||
path = "../../../../frame/system"
|
||||
|
||||
[dev-dependencies.sp-core]
|
||||
default-features = false
|
||||
version = "2.0.0-alpha.1"
|
||||
version = "2.0.0-alpha.2"
|
||||
path = "../../../../primitives/core"
|
||||
|
||||
[dev-dependencies.sp-io]
|
||||
default-features = false
|
||||
version = "2.0.0-alpha.1"
|
||||
version = "2.0.0-alpha.2"
|
||||
path = "../../../../primitives/io"
|
||||
|
||||
[dev-dependencies.sp-runtime]
|
||||
default-features = false
|
||||
version = "2.0.0-alpha.1"
|
||||
version = "2.0.0-alpha.2"
|
||||
path = "../../../../primitives/runtime"
|
||||
|
||||
|
||||
[features]
|
||||
default = ['std']
|
||||
std = [
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "node-template-runtime"
|
||||
version = "2.0.0-alpha.1"
|
||||
version = "2.0.0-alpha.2"
|
||||
authors = ["Anonymous"]
|
||||
edition = "2018"
|
||||
license = "Unlicense"
|
||||
@@ -10,31 +10,31 @@ repository = "https://github.com/paritytech/substrate/"
|
||||
[dependencies]
|
||||
codec = { package = "parity-scale-codec", version = "1.0.0", default-features = false, features = ["derive"] }
|
||||
|
||||
aura = { version = "2.0.0-alpha.1", default-features = false, package = "pallet-aura", path = "../../../frame/aura" }
|
||||
balances = { version = "2.0.0-alpha.1", default-features = false, package = "pallet-balances", path = "../../../frame/balances" }
|
||||
frame-support = { version = "2.0.0-alpha.1", default-features = false, path = "../../../frame/support" }
|
||||
grandpa = { version = "2.0.0-alpha.1", default-features = false, package = "pallet-grandpa", path = "../../../frame/grandpa" }
|
||||
randomness-collective-flip = { version = "2.0.0-alpha.1", default-features = false, package = "pallet-randomness-collective-flip", path = "../../../frame/randomness-collective-flip" }
|
||||
sudo = { version = "2.0.0-alpha.1", default-features = false, package = "pallet-sudo", path = "../../../frame/sudo" }
|
||||
system = { version = "2.0.0-alpha.1", default-features = false, package = "frame-system", path = "../../../frame/system" }
|
||||
timestamp = { version = "2.0.0-alpha.1", default-features = false, package = "pallet-timestamp", path = "../../../frame/timestamp" }
|
||||
transaction-payment = { version = "2.0.0-alpha.1", default-features = false, package = "pallet-transaction-payment", path = "../../../frame/transaction-payment" }
|
||||
frame-executive = { version = "2.0.0-alpha.1", default-features = false, path = "../../../frame/executive" }
|
||||
aura = { version = "2.0.0-alpha.2", default-features = false, package = "pallet-aura", path = "../../../frame/aura" }
|
||||
balances = { version = "2.0.0-alpha.2", default-features = false, package = "pallet-balances", path = "../../../frame/balances" }
|
||||
frame-support = { version = "2.0.0-alpha.2", default-features = false, path = "../../../frame/support" }
|
||||
grandpa = { version = "2.0.0-alpha.2", default-features = false, package = "pallet-grandpa", path = "../../../frame/grandpa" }
|
||||
randomness-collective-flip = { version = "2.0.0-alpha.2", default-features = false, package = "pallet-randomness-collective-flip", path = "../../../frame/randomness-collective-flip" }
|
||||
sudo = { version = "2.0.0-alpha.2", default-features = false, package = "pallet-sudo", path = "../../../frame/sudo" }
|
||||
system = { version = "2.0.0-alpha.2", default-features = false, package = "frame-system", path = "../../../frame/system" }
|
||||
timestamp = { version = "2.0.0-alpha.2", default-features = false, package = "pallet-timestamp", path = "../../../frame/timestamp" }
|
||||
transaction-payment = { version = "2.0.0-alpha.2", default-features = false, package = "pallet-transaction-payment", path = "../../../frame/transaction-payment" }
|
||||
frame-executive = { version = "2.0.0-alpha.2", default-features = false, path = "../../../frame/executive" }
|
||||
serde = { version = "1.0.101", optional = true, features = ["derive"] }
|
||||
sp-api = { version = "2.0.0-alpha.1", default-features = false, path = "../../../primitives/api" }
|
||||
sp-block-builder = { path = "../../../primitives/block-builder", default-features = false, version = "2.0.0-alpha.1"}
|
||||
sp-consensus-aura = { version = "0.8.0-alpha.1", default-features = false, path = "../../../primitives/consensus/aura" }
|
||||
sp-core = { version = "2.0.0-alpha.1", default-features = false, path = "../../../primitives/core" }
|
||||
sp-inherents = { path = "../../../primitives/inherents", default-features = false, version = "2.0.0-alpha.1"}
|
||||
sp-io = { version = "2.0.0-alpha.1", default-features = false, path = "../../../primitives/io" }
|
||||
sp-offchain = { version = "2.0.0-alpha.1", default-features = false, path = "../../../primitives/offchain" }
|
||||
sp-runtime = { version = "2.0.0-alpha.1", default-features = false, path = "../../../primitives/runtime" }
|
||||
sp-session = { version = "2.0.0-alpha.1", default-features = false, path = "../../../primitives/session" }
|
||||
sp-std = { version = "2.0.0-alpha.1", default-features = false, path = "../../../primitives/std" }
|
||||
sp-transaction-pool = { version = "2.0.0-alpha.1", default-features = false, path = "../../../primitives/transaction-pool" }
|
||||
sp-version = { version = "2.0.0-alpha.1", default-features = false, path = "../../../primitives/version" }
|
||||
sp-api = { version = "2.0.0-alpha.2", default-features = false, path = "../../../primitives/api" }
|
||||
sp-block-builder = { path = "../../../primitives/block-builder", default-features = false, version = "2.0.0-alpha.2"}
|
||||
sp-consensus-aura = { version = "0.8.0-alpha.2", default-features = false, path = "../../../primitives/consensus/aura" }
|
||||
sp-core = { version = "2.0.0-alpha.2", default-features = false, path = "../../../primitives/core" }
|
||||
sp-inherents = { path = "../../../primitives/inherents", default-features = false, version = "2.0.0-alpha.2"}
|
||||
sp-io = { version = "2.0.0-alpha.2", default-features = false, path = "../../../primitives/io" }
|
||||
sp-offchain = { version = "2.0.0-alpha.2", default-features = false, path = "../../../primitives/offchain" }
|
||||
sp-runtime = { version = "2.0.0-alpha.2", default-features = false, path = "../../../primitives/runtime" }
|
||||
sp-session = { version = "2.0.0-alpha.2", default-features = false, path = "../../../primitives/session" }
|
||||
sp-std = { version = "2.0.0-alpha.2", default-features = false, path = "../../../primitives/std" }
|
||||
sp-transaction-pool = { version = "2.0.0-alpha.2", default-features = false, path = "../../../primitives/transaction-pool" }
|
||||
sp-version = { version = "2.0.0-alpha.2", default-features = false, path = "../../../primitives/version" }
|
||||
|
||||
template = { version = "2.0.0-alpha.1", default-features = false, path = "../pallets/template", package = "pallet-template" }
|
||||
template = { version = "2.0.0-alpha.2", default-features = false, path = "../pallets/template", package = "pallet-template" }
|
||||
|
||||
[build-dependencies]
|
||||
wasm-builder-runner = { version = "1.0.5", package = "substrate-wasm-builder-runner", path = "../../../utils/wasm-builder-runner" }
|
||||
|
||||
Reference in New Issue
Block a user