Skip to content
This repository was archived by the owner on Nov 15, 2023. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from 14 commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
698d52c
cargo set-version --bump major -p pallet-contracts-primitives
ascjones Feb 28, 2022
9985508
cargo set-version --bump major -p sp-core
ascjones Feb 28, 2022
c1ac1b3
cargo set-version --bump major -p sp-runtime-interface
ascjones Feb 28, 2022
fb9059a
cargo set-version --bump major -p sp-wasm-interface
ascjones Feb 28, 2022
7b897de
cargo set-version --bump major -p sp-runtime
ascjones Feb 28, 2022
464ea01
cargo set-version --bump major -p sp-storage
ascjones Feb 28, 2022
8a78fb9
cargo set-version --bump major -p sp-rpc
ascjones Feb 28, 2022
6f96a44
cargo set-version --bump major -p sp-io
ascjones Feb 28, 2022
8a38a99
cargo set-version --bump major -p sp-trie
ascjones Feb 28, 2022
0eeede5
cargo set-version -p sp-state-machine -- 0.12.0
ascjones Feb 28, 2022
3ccceba
cargo set-version -p sp-externalities -- 0.12.0
ascjones Feb 28, 2022
d3cfa7e
cargo set-version -p sp-keystore -- 0.12.0
ascjones Feb 28, 2022
f2a60a5
cargo set-version --bump major -p sp-keyring
ascjones Feb 28, 2022
1ca5996
cargo set-version --bump major -p sp-version
ascjones Feb 28, 2022
0381d67
cargo set-version --bump major -p sp-tracing
ascjones Feb 28, 2022
5f68122
Merge branch 'master' into aj/release-crates
ascjones Feb 28, 2022
eed30d8
cargo set-version --bump major -p sp-application-crypto
ascjones Feb 28, 2022
ff0e1f0
cargo set-version --bump major -p sp-arithmetic
ascjones Feb 28, 2022
9d16a2f
Merge branch 'master' into aj/release-crates
ascjones Feb 28, 2022
1c65e6c
cargo unleash version bump-major -p sp-runtime-interface-proc-macro
ascjones Mar 1, 2022
1b9a66b
Merge branch 'master' into aj/release-crates
ascjones Mar 1, 2022
2b90137
Merge branch 'master' into aj/release-crates
ascjones Mar 1, 2022
fe1d389
Add codec max-encoded-len feature to sp-arithmetic
ascjones Mar 1, 2022
d07bd38
cargo unleash version bump-major -p sp-core-hashing-proc-macro
ascjones Mar 1, 2022
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 14 additions & 14 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions bin/node-template/node/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ name = "node-template"
clap = { version = "3.0", features = ["derive"] }

sc-cli = { version = "0.10.0-dev", path = "../../../client/cli", features = ["wasmtime"] }
sp-core = { version = "5.0.0", path = "../../../primitives/core" }
sp-core = { version = "6.0.0", path = "../../../primitives/core" }
sc-executor = { version = "0.10.0-dev", path = "../../../client/executor", features = ["wasmtime"] }
sc-service = { version = "0.10.0-dev", path = "../../../client/service", features = ["wasmtime"] }
sc-telemetry = { version = "4.0.0-dev", path = "../../../client/telemetry" }
Expand All @@ -34,7 +34,7 @@ sc-consensus = { version = "0.10.0-dev", path = "../../../client/consensus/commo
sc-finality-grandpa = { version = "0.10.0-dev", path = "../../../client/finality-grandpa" }
sp-finality-grandpa = { version = "4.0.0-dev", path = "../../../primitives/finality-grandpa" }
sc-client-api = { version = "4.0.0-dev", path = "../../../client/api" }
sp-runtime = { version = "5.0.0", path = "../../../primitives/runtime" }
sp-runtime = { version = "6.0.0", path = "../../../primitives/runtime" }
sp-timestamp = { version = "4.0.0-dev", path = "../../../primitives/timestamp" }

# These dependencies are used for the node template's RPCs
Expand Down
6 changes: 3 additions & 3 deletions bin/node-template/pallets/template/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ frame-system = { default-features = false, version = "4.0.0-dev", path = "../../
frame-benchmarking = { default-features = false, version = "4.0.0-dev", path = "../../../../frame/benchmarking", optional = true }

[dev-dependencies]
sp-core = { default-features = false, version = "5.0.0", path = "../../../../primitives/core" }
sp-io = { default-features = false, version = "5.0.0", path = "../../../../primitives/io" }
sp-runtime = { default-features = false, version = "5.0.0", path = "../../../../primitives/runtime" }
sp-core = { default-features = false, version = "6.0.0", path = "../../../../primitives/core" }
sp-io = { default-features = false, version = "6.0.0", path = "../../../../primitives/io" }
sp-runtime = { default-features = false, version = "6.0.0", path = "../../../../primitives/runtime" }

[features]
default = ["std"]
Expand Down
6 changes: 3 additions & 3 deletions bin/node-template/runtime/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,14 +29,14 @@ frame-executive = { version = "4.0.0-dev", default-features = false, path = "../
sp-api = { version = "4.0.0-dev", default-features = false, path = "../../../primitives/api" }
sp-block-builder = { version = "4.0.0-dev", default-features = false, path = "../../../primitives/block-builder"}
sp-consensus-aura = { version = "0.10.0-dev", default-features = false, path = "../../../primitives/consensus/aura" }
sp-core = { version = "5.0.0", default-features = false, path = "../../../primitives/core" }
sp-core = { version = "6.0.0", default-features = false, path = "../../../primitives/core" }
sp-inherents = { version = "4.0.0-dev", default-features = false, path = "../../../primitives/inherents"}
sp-offchain = { version = "4.0.0-dev", default-features = false, path = "../../../primitives/offchain" }
sp-runtime = { version = "5.0.0", default-features = false, path = "../../../primitives/runtime" }
sp-runtime = { version = "6.0.0", default-features = false, path = "../../../primitives/runtime" }
sp-session = { version = "4.0.0-dev", default-features = false, path = "../../../primitives/session" }
sp-std = { version = "4.0.0", default-features = false, path = "../../../primitives/std" }
sp-transaction-pool = { version = "4.0.0-dev", default-features = false, path = "../../../primitives/transaction-pool" }
sp-version = { version = "4.0.0-dev", default-features = false, path = "../../../primitives/version" }
sp-version = { version = "5.0.0", default-features = false, path = "../../../primitives/version" }

# Used for the node template's RPCs
frame-system-rpc-runtime-api = { version = "4.0.0-dev", default-features = false, path = "../../../frame/system/rpc/runtime-api/" }
Expand Down
8 changes: 4 additions & 4 deletions bin/node/bench/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,15 @@ node-primitives = { version = "2.0.0", path = "../primitives" }
node-testing = { version = "3.0.0-dev", path = "../testing" }
node-runtime = { version = "3.0.0-dev", path = "../runtime" }
sc-client-api = { version = "4.0.0-dev", path = "../../../client/api/" }
sp-runtime = { version = "5.0.0", path = "../../../primitives/runtime" }
sp-state-machine = { version = "0.11.0", path = "../../../primitives/state-machine" }
sp-runtime = { version = "6.0.0", path = "../../../primitives/runtime" }
sp-state-machine = { version = "0.12.0", path = "../../../primitives/state-machine" }
serde = "1.0.136"
serde_json = "1.0.74"
derive_more = "0.99.16"
kvdb = "0.11.0"
kvdb-rocksdb = "0.15.1"
sp-trie = { version = "5.0.0", path = "../../../primitives/trie" }
sp-core = { version = "5.0.0", path = "../../../primitives/core" }
sp-trie = { version = "6.0.0", path = "../../../primitives/trie" }
sp-core = { version = "6.0.0", path = "../../../primitives/core" }
sp-consensus = { version = "0.10.0-dev", path = "../../../primitives/consensus/common" }
sc-basic-authorship = { version = "0.10.0-dev", path = "../../../client/basic-authorship" }
sp-inherents = { version = "4.0.0-dev", path = "../../../primitives/inherents" }
Expand Down
10 changes: 5 additions & 5 deletions bin/node/cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -47,13 +47,13 @@ sp-authority-discovery = { version = "4.0.0-dev", path = "../../../primitives/au
sp-consensus-babe = { version = "0.10.0-dev", path = "../../../primitives/consensus/babe" }
grandpa-primitives = { version = "4.0.0-dev", package = "sp-finality-grandpa", path = "../../../primitives/finality-grandpa" }
sp-api = { version = "4.0.0-dev", path = "../../../primitives/api" }
sp-core = { version = "5.0.0", path = "../../../primitives/core" }
sp-runtime = { version = "5.0.0", path = "../../../primitives/runtime" }
sp-core = { version = "6.0.0", path = "../../../primitives/core" }
sp-runtime = { version = "6.0.0", path = "../../../primitives/runtime" }
sp-timestamp = { version = "4.0.0-dev", path = "../../../primitives/timestamp" }
sp-authorship = { version = "4.0.0-dev", path = "../../../primitives/authorship" }
sp-inherents = { version = "4.0.0-dev", path = "../../../primitives/inherents" }
sp-keyring = { version = "5.0.0", path = "../../../primitives/keyring" }
sp-keystore = { version = "0.11.0", path = "../../../primitives/keystore" }
sp-keyring = { version = "6.0.0", path = "../../../primitives/keyring" }
sp-keystore = { version = "0.12.0", path = "../../../primitives/keystore" }
sp-consensus = { version = "0.10.0-dev", path = "../../../primitives/consensus/common" }
sp-transaction-pool = { version = "4.0.0-dev", path = "../../../primitives/transaction-pool" }
sp-transaction-storage-proof = { version = "4.0.0-dev", path = "../../../primitives/transaction-storage-proof" }
Expand Down Expand Up @@ -102,7 +102,7 @@ sc-cli = { version = "0.10.0-dev", optional = true, path = "../../../client/cli"
sc-service = { version = "0.10.0-dev", default-features = false, path = "../../../client/service", features = [
"wasmtime",
] }
sp-trie = { version = "5.0.0", default-features = false, path = "../../../primitives/trie", features = [
sp-trie = { version = "6.0.0", default-features = false, path = "../../../primitives/trie", features = [
"memory-tracker",
] }

Expand Down
14 changes: 7 additions & 7 deletions bin/node/executor/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@ scale-info = { version = "2.0.0", features = ["derive"] }
node-primitives = { version = "2.0.0", path = "../primitives" }
node-runtime = { version = "3.0.0-dev", path = "../runtime" }
sc-executor = { version = "0.10.0-dev", path = "../../../client/executor" }
sp-core = { version = "5.0.0", path = "../../../primitives/core" }
sp-keystore = { version = "0.11.0", path = "../../../primitives/keystore" }
sp-state-machine = { version = "0.11.0", path = "../../../primitives/state-machine" }
sp-core = { version = "6.0.0", path = "../../../primitives/core" }
sp-keystore = { version = "0.12.0", path = "../../../primitives/keystore" }
sp-state-machine = { version = "0.12.0", path = "../../../primitives/state-machine" }
sp-tracing = { version = "4.0.0", path = "../../../primitives/tracing" }
sp-trie = { version = "5.0.0", path = "../../../primitives/trie" }
sp-trie = { version = "6.0.0", path = "../../../primitives/trie" }
frame-benchmarking = { version = "4.0.0-dev", path = "../../../frame/benchmarking" }

[dev-dependencies]
Expand All @@ -36,9 +36,9 @@ pallet-timestamp = { version = "4.0.0-dev", path = "../../../frame/timestamp" }
pallet-treasury = { version = "4.0.0-dev", path = "../../../frame/treasury" }
sp-application-crypto = { version = "5.0.0", path = "../../../primitives/application-crypto" }
sp-consensus-babe = { version = "0.10.0-dev", path = "../../../primitives/consensus/babe" }
sp-runtime = { version = "5.0.0", path = "../../../primitives/runtime" }
sp-externalities = { version = "0.11.0", path = "../../../primitives/externalities" }
sp-keyring = { version = "5.0.0", path = "../../../primitives/keyring" }
sp-runtime = { version = "6.0.0", path = "../../../primitives/runtime" }
sp-externalities = { version = "0.12.0", path = "../../../primitives/externalities" }
sp-keyring = { version = "6.0.0", path = "../../../primitives/keyring" }
wat = "1.0"
futures = "0.3.9"

Expand Down
4 changes: 2 additions & 2 deletions bin/node/inspect/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,5 @@ sc-client-api = { version = "4.0.0-dev", path = "../../../client/api" }
sc-executor = { version = "0.10.0-dev", path = "../../../client/executor" }
sc-service = { version = "0.10.0-dev", default-features = false, path = "../../../client/service" }
sp-blockchain = { version = "4.0.0-dev", path = "../../../primitives/blockchain" }
sp-core = { version = "5.0.0", path = "../../../primitives/core" }
sp-runtime = { version = "5.0.0", path = "../../../primitives/runtime" }
sp-core = { version = "6.0.0", path = "../../../primitives/core" }
sp-runtime = { version = "6.0.0", path = "../../../primitives/runtime" }
4 changes: 2 additions & 2 deletions bin/node/primitives/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ codec = { package = "parity-scale-codec", version = "3.0.0", default-features =
scale-info = { version = "2.0.0", default-features = false, features = ["derive"] }
frame-system = { version = "4.0.0-dev", default-features = false, path = "../../../frame/system" }
sp-application-crypto = { version = "5.0.0", default-features = false, path = "../../../primitives/application-crypto" }
sp-core = { version = "5.0.0", default-features = false, path = "../../../primitives/core" }
sp-runtime = { version = "5.0.0", default-features = false, path = "../../../primitives/runtime" }
sp-core = { version = "6.0.0", default-features = false, path = "../../../primitives/core" }
sp-runtime = { version = "6.0.0", default-features = false, path = "../../../primitives/runtime" }

[features]
default = ["std"]
Expand Down
4 changes: 2 additions & 2 deletions bin/node/rpc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@ sc-sync-state-rpc = { version = "0.10.0-dev", path = "../../../client/sync-state
sp-api = { version = "4.0.0-dev", path = "../../../primitives/api" }
sp-block-builder = { version = "4.0.0-dev", path = "../../../primitives/block-builder" }
sp-blockchain = { version = "4.0.0-dev", path = "../../../primitives/blockchain" }
sp-keystore = { version = "0.11.0", path = "../../../primitives/keystore" }
sp-keystore = { version = "0.12.0", path = "../../../primitives/keystore" }
sp-consensus = { version = "0.10.0-dev", path = "../../../primitives/consensus/common" }
sp-consensus-babe = { version = "0.10.0-dev", path = "../../../primitives/consensus/babe" }
sp-runtime = { version = "5.0.0", path = "../../../primitives/runtime" }
sp-runtime = { version = "6.0.0", path = "../../../primitives/runtime" }
sc-transaction-pool-api = { version = "4.0.0-dev", path = "../../../client/transaction-pool/api" }
substrate-frame-rpc-system = { version = "4.0.0-dev", path = "../../../utils/frame/rpc/system" }
10 changes: 5 additions & 5 deletions bin/node/runtime/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,16 +30,16 @@ sp-block-builder = { path = "../../../primitives/block-builder", default-feature
sp-inherents = { version = "4.0.0-dev", default-features = false, path = "../../../primitives/inherents" }
node-primitives = { version = "2.0.0", default-features = false, path = "../primitives" }
sp-offchain = { version = "4.0.0-dev", default-features = false, path = "../../../primitives/offchain" }
sp-core = { version = "5.0.0", default-features = false, path = "../../../primitives/core" }
sp-core = { version = "6.0.0", default-features = false, path = "../../../primitives/core" }
sp-std = { version = "4.0.0", default-features = false, path = "../../../primitives/std" }
sp-api = { version = "4.0.0-dev", default-features = false, path = "../../../primitives/api" }
sp-runtime = { version = "5.0.0", default-features = false, path = "../../../primitives/runtime" }
sp-runtime = { version = "6.0.0", default-features = false, path = "../../../primitives/runtime" }
sp-staking = { version = "4.0.0-dev", default-features = false, path = "../../../primitives/staking" }
sp-session = { version = "4.0.0-dev", default-features = false, path = "../../../primitives/session" }
sp-transaction-pool = { version = "4.0.0-dev", default-features = false, path = "../../../primitives/transaction-pool" }
sp-version = { version = "4.0.0-dev", default-features = false, path = "../../../primitives/version" }
sp-version = { version = "5.0.0", default-features = false, path = "../../../primitives/version" }
sp-npos-elections = { version = "4.0.0-dev", default-features = false, path = "../../../primitives/npos-elections" }
sp-io = { version = "5.0.0", default-features = false, path = "../../../primitives/io" }
sp-io = { version = "6.0.0", default-features = false, path = "../../../primitives/io" }
sp-sandbox = { version = "0.10.0-dev", default-features = false, path = "../../../primitives/sandbox" }

# frame dependencies
Expand All @@ -61,7 +61,7 @@ pallet-bounties = { version = "4.0.0-dev", default-features = false, path = "../
pallet-child-bounties = { version = "4.0.0-dev", default-features = false, path = "../../../frame/child-bounties" }
pallet-collective = { version = "4.0.0-dev", default-features = false, path = "../../../frame/collective" }
pallet-contracts = { version = "4.0.0-dev", default-features = false, path = "../../../frame/contracts" }
pallet-contracts-primitives = { version = "5.0.0", default-features = false, path = "../../../frame/contracts/common/" }
pallet-contracts-primitives = { version = "6.0.0", default-features = false, path = "../../../frame/contracts/common/" }
pallet-contracts-rpc-runtime-api = { version = "4.0.0-dev", default-features = false, path = "../../../frame/contracts/rpc/runtime-api/" }
pallet-conviction-voting = { version = "4.0.0-dev", default-features = false, path = "../../../frame/conviction-voting" }
pallet-democracy = { version = "4.0.0-dev", default-features = false, path = "../../../frame/democracy" }
Expand Down
8 changes: 4 additions & 4 deletions bin/node/testing/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,13 @@ sc-client-db = { version = "0.10.0-dev", path = "../../../client/db/", features
sc-client-api = { version = "4.0.0-dev", path = "../../../client/api/" }
sc-consensus = { version = "0.10.0-dev", path = "../../../client/consensus/common" }
codec = { package = "parity-scale-codec", version = "3.0.0" }
sp-keyring = { version = "5.0.0", path = "../../../primitives/keyring" }
sp-keyring = { version = "6.0.0", path = "../../../primitives/keyring" }
node-executor = { version = "3.0.0-dev", path = "../executor" }
node-primitives = { version = "2.0.0", path = "../primitives" }
node-runtime = { version = "3.0.0-dev", path = "../runtime" }
sp-core = { version = "5.0.0", path = "../../../primitives/core" }
sp-io = { version = "5.0.0", path = "../../../primitives/io" }
sp-runtime = { version = "5.0.0", path = "../../../primitives/runtime" }
sp-core = { version = "6.0.0", path = "../../../primitives/core" }
sp-io = { version = "6.0.0", path = "../../../primitives/io" }
sp-runtime = { version = "6.0.0", path = "../../../primitives/runtime" }
sc-executor = { version = "0.10.0-dev", path = "../../../client/executor", features = [
"wasmtime",
] }
Expand Down
4 changes: 2 additions & 2 deletions bin/utils/chain-spec-builder/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,5 @@ rand = "0.8"
sc-keystore = { version = "4.0.0-dev", path = "../../../client/keystore" }
sc-chain-spec = { version = "4.0.0-dev", path = "../../../client/chain-spec" }
node-cli = { version = "3.0.0-dev", path = "../../node/cli" }
sp-core = { version = "5.0.0", path = "../../../primitives/core" }
sp-keystore = { version = "0.11.0", path = "../../../primitives/keystore" }
sp-core = { version = "6.0.0", path = "../../../primitives/core" }
sp-keystore = { version = "0.12.0", path = "../../../primitives/keystore" }
4 changes: 2 additions & 2 deletions client/allocator/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ readme = "README.md"
targets = ["x86_64-unknown-linux-gnu"]

[dependencies]
sp-core = { version = "5.0.0", path = "../../primitives/core" }
sp-wasm-interface = { version = "5.0.0", path = "../../primitives/wasm-interface" }
sp-core = { version = "6.0.0", path = "../../primitives/core" }
sp-wasm-interface = { version = "6.0.0", path = "../../primitives/wasm-interface" }
log = "0.4.11"
thiserror = "1.0.30"
Loading