Skip to content

Commit

Permalink
Prep sp-version for release
Browse files Browse the repository at this point in the history
  • Loading branch information
dvdplm committed Dec 15, 2021
1 parent c4b1fad commit f08cf6e
Show file tree
Hide file tree
Showing 21 changed files with 24 additions and 24 deletions.
4 changes: 2 additions & 2 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion bin/node-template/runtime/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ sp-runtime = { version = "4.0.0", default-features = false, path = "../../../pri
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 = "4.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
2 changes: 1 addition & 1 deletion bin/node/runtime/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ sp-staking = { version = "4.0.0-dev", default-features = false, path = "../../..
sp-keyring = { version = "4.0.0-dev", optional = true, path = "../../../primitives/keyring" }
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 = "4.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 = "4.0.0", default-features = false, path = "../../../primitives/io" }
sp-sandbox = { version = "0.10.0-dev", default-features = false, path = "../../../primitives/sandbox" }
Expand Down
2 changes: 1 addition & 1 deletion client/cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ sp-blockchain = { version = "4.0.0-dev", path = "../../primitives/blockchain" }
sc-network = { version = "0.10.0-dev", path = "../network" }
sp-runtime = { version = "4.0.0", path = "../../primitives/runtime" }
sc-utils = { version = "4.0.0-dev", path = "../utils" }
sp-version = { version = "4.0.0-dev", path = "../../primitives/version" }
sp-version = { version = "4.0.0", path = "../../primitives/version" }
sp-core = { version = "4.0.0", path = "../../primitives/core" }
sp-keystore = { version = "0.10.0", path = "../../primitives/keystore" }
sc-service = { version = "0.10.0-dev", default-features = false, path = "../service" }
Expand Down
2 changes: 1 addition & 1 deletion client/consensus/babe/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ num-bigint = "0.2.3"
num-rational = "0.2.2"
num-traits = "0.2.8"
serde = { version = "1.0.126", features = ["derive"] }
sp-version = { version = "4.0.0-dev", path = "../../../primitives/version" }
sp-version = { version = "4.0.0", path = "../../../primitives/version" }
sp-io = { version = "4.0.0", path = "../../../primitives/io" }
sp-inherents = { version = "4.0.0-dev", path = "../../../primitives/inherents" }
sc-telemetry = { version = "4.0.0-dev", path = "../../telemetry" }
Expand Down
2 changes: 1 addition & 1 deletion client/executor/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ sp-io = { version = "4.0.0", path = "../../primitives/io" }
sp-core = { version = "4.0.0", path = "../../primitives/core" }
sp-tasks = { version = "4.0.0-dev", path = "../../primitives/tasks" }
sp-trie = { version = "4.0.0", path = "../../primitives/trie" }
sp-version = { version = "4.0.0-dev", path = "../../primitives/version" }
sp-version = { version = "4.0.0", path = "../../primitives/version" }
sp-panic-handler = { version = "4.0.0", path = "../../primitives/panic-handler" }
wasmi = "0.9.1"
lazy_static = "1.4.0"
Expand Down
2 changes: 1 addition & 1 deletion client/rpc-api/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ parking_lot = "0.11.1"
thiserror = "1.0"

sp-core = { version = "4.0.0", path = "../../primitives/core" }
sp-version = { version = "4.0.0-dev", path = "../../primitives/version" }
sp-version = { version = "4.0.0", path = "../../primitives/version" }
sp-runtime = { path = "../../primitives/runtime", version = "4.0.0" }
sc-chain-spec = { path = "../chain-spec", version = "4.0.0-dev" }
serde = { version = "1.0.126", features = ["derive"] }
Expand Down
2 changes: 1 addition & 1 deletion client/rpc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jsonrpc-pubsub = "18.0.0"
log = "0.4.8"
sp-core = { version = "4.0.0", path = "../../primitives/core" }
rpc = { package = "jsonrpc-core", version = "18.0.0" }
sp-version = { version = "4.0.0-dev", path = "../../primitives/version" }
sp-version = { version = "4.0.0", path = "../../primitives/version" }
serde_json = "1.0.71"
sp-session = { version = "4.0.0-dev", path = "../../primitives/session" }
sp-offchain = { version = "4.0.0-dev", path = "../../primitives/offchain" }
Expand Down
2 changes: 1 addition & 1 deletion client/service/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ sp-runtime = { version = "4.0.0", path = "../../primitives/runtime" }
sp-trie = { version = "4.0.0", path = "../../primitives/trie" }
sp-externalities = { version = "0.10.0", path = "../../primitives/externalities" }
sc-utils = { version = "4.0.0-dev", path = "../utils" }
sp-version = { version = "4.0.0-dev", path = "../../primitives/version" }
sp-version = { version = "4.0.0", path = "../../primitives/version" }
sp-blockchain = { version = "4.0.0-dev", path = "../../primitives/blockchain" }
sp-core = { version = "4.0.0", path = "../../primitives/core" }
sp-keystore = { version = "0.10.0", path = "../../primitives/keystore" }
Expand Down
2 changes: 1 addition & 1 deletion frame/executive/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ sp-core = { version = "4.0.0", path = "../../primitives/core" }
sp-io = { version = "4.0.0", path = "../../primitives/io" }
pallet-balances = { version = "4.0.0-dev", path = "../balances" }
pallet-transaction-payment = { version = "4.0.0-dev", path = "../transaction-payment" }
sp-version = { version = "4.0.0-dev", path = "../../primitives/version" }
sp-version = { version = "4.0.0", path = "../../primitives/version" }
sp-inherents = { version = "4.0.0-dev", path = "../../primitives/inherents" }

[features]
Expand Down
2 changes: 1 addition & 1 deletion frame/support/test/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ frame-support = { version = "4.0.0-dev", default-features = false, path = "../"
sp-runtime = { version = "4.0.0", default-features = false, path = "../../../primitives/runtime" }
sp-core = { version = "4.0.0", default-features = false, path = "../../../primitives/core" }
sp-std = { version = "4.0.0", default-features = false, path = "../../../primitives/std" }
sp-version = { version = "4.0.0-dev", default-features = false, path = "../../../primitives/version" }
sp-version = { version = "4.0.0", default-features = false, path = "../../../primitives/version" }
trybuild = "1.0.53"
pretty_assertions = "1.0.0"
rustversion = "1.0.5"
Expand Down
2 changes: 1 addition & 1 deletion frame/support/test/compile_pass/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ codec = { package = "parity-scale-codec", version = "2.0.0", default-features =
scale-info = { version = "1.0", default-features = false, features = ["derive"] }
sp-core = { version = "4.0.0", default-features = false, path = "../../../../primitives/core" }
sp-runtime = { version = "4.0.0", default-features = false, path = "../../../../primitives/runtime" }
sp-version = { version = "4.0.0-dev", default-features = false, path = "../../../../primitives/version" }
sp-version = { version = "4.0.0", default-features = false, path = "../../../../primitives/version" }
frame-support = { version = "4.0.0-dev", default-features = false, path = "../../" }
frame-system = { version = "4.0.0-dev", default-features = false, path = "../../../system" }

Expand Down
2 changes: 1 addition & 1 deletion frame/system/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ sp-core = { version = "4.0.0", default-features = false, path = "../../primitive
sp-std = { version = "4.0.0", default-features = false, path = "../../primitives/std" }
sp-io = { version = "4.0.0", path = "../../primitives/io", default-features = false }
sp-runtime = { version = "4.0.0", default-features = false, path = "../../primitives/runtime" }
sp-version = { version = "4.0.0-dev", default-features = false, path = "../../primitives/version" }
sp-version = { version = "4.0.0", default-features = false, path = "../../primitives/version" }
frame-support = { version = "4.0.0-dev", default-features = false, path = "../support" }
log = { version = "0.4.14", default-features = false }

Expand Down
2 changes: 1 addition & 1 deletion primitives/api/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ sp-api-proc-macro = { version = "4.0.0-dev", path = "proc-macro" }
sp-core = { version = "4.0.0", default-features = false, path = "../core" }
sp-std = { version = "4.0.0", default-features = false, path = "../std" }
sp-runtime = { version = "4.0.0", default-features = false, path = "../runtime" }
sp-version = { version = "4.0.0-dev", default-features = false, path = "../version" }
sp-version = { version = "4.0.0", default-features = false, path = "../version" }
sp-state-machine = { version = "0.10.0", optional = true, path = "../state-machine" }
hash-db = { version = "0.15.2", optional = true }
thiserror = { version = "1.0.30", optional = true }
Expand Down
2 changes: 1 addition & 1 deletion primitives/api/test/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
sp-api = { version = "4.0.0-dev", path = "../" }
substrate-test-runtime-client = { version = "2.0.0", path = "../../../test-utils/runtime/client" }
sp-version = { version = "4.0.0-dev", path = "../../version" }
sp-version = { version = "4.0.0", path = "../../version" }
sp-tracing = { version = "4.0.0", path = "../../tracing" }
sp-runtime = { version = "4.0.0", path = "../../runtime" }
sp-consensus = { version = "0.10.0-dev", path = "../../consensus/common" }
Expand Down
2 changes: 1 addition & 1 deletion primitives/consensus/common/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ sp-inherents = { version = "4.0.0-dev", path = "../../inherents" }
sp-state-machine = { version = "0.10.0", path = "../../state-machine" }
futures-timer = "3.0.1"
sp-std = { version = "4.0.0", path = "../../std" }
sp-version = { version = "4.0.0-dev", path = "../../version" }
sp-version = { version = "4.0.0", path = "../../version" }
sp-runtime = { version = "4.0.0", path = "../../runtime" }
thiserror = "1.0.30"

Expand Down
4 changes: 2 additions & 2 deletions primitives/version/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sp-version"
version = "4.0.0-dev"
version = "4.0.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2021"
license = "Apache-2.0"
Expand All @@ -20,7 +20,7 @@ codec = { package = "parity-scale-codec", version = "2.0.0", default-features =
scale-info = { version = "1.0", default-features = false, features = ["derive"] }
sp-std = { version = "4.0.0", default-features = false, path = "../std" }
sp-runtime = { version = "4.0.0", default-features = false, path = "../runtime" }
sp-version-proc-macro = { version = "4.0.0-dev", default-features = false, path = "proc-macro" }
sp-version-proc-macro = { version = "4.0.0", default-features = false, path = "proc-macro" }
parity-wasm = { version = "0.42.2", optional = true }
thiserror = { version = "1.0.30", optional = true }

Expand Down
4 changes: 2 additions & 2 deletions primitives/version/proc-macro/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sp-version-proc-macro"
version = "4.0.0-dev"
version = "4.0.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2021"
license = "Apache-2.0"
Expand All @@ -22,4 +22,4 @@ proc-macro2 = "1.0.29"
codec = { package = "parity-scale-codec", version = "2.0.0", features = [ "derive" ] }

[dev-dependencies]
sp-version = { version = "4.0.0-dev", path = ".." }
sp-version = { version = "4.0.0", path = ".." }
2 changes: 1 addition & 1 deletion test-utils/runtime/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ sp-std = { version = "4.0.0", default-features = false, path = "../../primitives
sp-runtime-interface = { version = "4.0.0", default-features = false, path = "../../primitives/runtime-interface" }
sp-io = { version = "4.0.0", default-features = false, path = "../../primitives/io" }
frame-support = { version = "4.0.0-dev", default-features = false, path = "../../frame/support" }
sp-version = { version = "4.0.0-dev", default-features = false, path = "../../primitives/version" }
sp-version = { version = "4.0.0", default-features = false, path = "../../primitives/version" }
sp-session = { version = "4.0.0-dev", default-features = false, path = "../../primitives/session" }
sp-api = { version = "4.0.0-dev", default-features = false, path = "../../primitives/api" }
sp-runtime = { version = "4.0.0", default-features = false, path = "../../primitives/runtime" }
Expand Down
2 changes: 1 addition & 1 deletion utils/frame/remote-externalities/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ serde = "1.0.126"
sp-io = { version = "4.0.0", path = "../../../primitives/io" }
sp-core = { version = "4.0.0", path = "../../../primitives/core" }
sp-runtime = { version = "4.0.0", path = "../../../primitives/runtime" }
sp-version = { version = "4.0.0-dev", path = "../../../primitives/version" }
sp-version = { version = "4.0.0", path = "../../../primitives/version" }

[dev-dependencies]
tokio = { version = "1.13", features = ["macros", "rt-multi-thread"] }
Expand Down
2 changes: 1 addition & 1 deletion utils/frame/try-runtime/cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ sp-core = { version = "4.0.0", path = "../../../../primitives/core" }
sp-io = { version = "4.0.0", path = "../../../../primitives/io" }
sp-keystore = { version = "0.10.0", path = "../../../../primitives/keystore" }
sp-externalities = { version = "0.10.0", path = "../../../../primitives/externalities" }
sp-version = { version = "4.0.0-dev", path = "../../../../primitives/version" }
sp-version = { version = "4.0.0", path = "../../../../primitives/version" }

remote-externalities = { version = "0.10.0-dev", path = "../../remote-externalities" }
jsonrpsee = { version = "0.4.1", default-features = false, features = ["ws-client"]}
Expand Down

0 comments on commit f08cf6e

Please sign in to comment.