From 09474a5ca46bf5237255efbecd382eddcfe817cd Mon Sep 17 00:00:00 2001 From: Davide Galassi Date: Wed, 22 Feb 2023 15:35:49 +0100 Subject: [PATCH] Bump version to 0.3.2 --- Cargo.lock | 10 +++++----- bin/node-sassafras/node/Cargo.toml | 8 ++++---- bin/node-sassafras/runtime/Cargo.toml | 6 +++--- client/consensus/sassafras/Cargo.toml | 4 ++-- frame/sassafras/Cargo.toml | 4 ++-- primitives/consensus/sassafras/Cargo.toml | 5 +++-- test-utils/runtime/Cargo.toml | 4 ++-- 7 files changed, 21 insertions(+), 20 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index fc66deb4b8cce..2186a7d7dc8fc 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4953,7 +4953,7 @@ dependencies = [ [[package]] name = "node-sassafras" -version = "0.3.1-dev" +version = "0.3.2-dev" dependencies = [ "clap 4.1.4", "frame-benchmarking", @@ -4995,7 +4995,7 @@ dependencies = [ [[package]] name = "node-sassafras-runtime" -version = "0.3.1-dev" +version = "0.3.2-dev" dependencies = [ "frame-benchmarking", "frame-executive", @@ -6453,7 +6453,7 @@ dependencies = [ [[package]] name = "pallet-sassafras" -version = "0.3.1-dev" +version = "0.3.2-dev" dependencies = [ "frame-benchmarking", "frame-support", @@ -8439,7 +8439,7 @@ dependencies = [ [[package]] name = "sc-consensus-sassafras" -version = "0.3.1-dev" +version = "0.3.2-dev" dependencies = [ "async-trait", "fork-tree", @@ -10016,7 +10016,7 @@ dependencies = [ [[package]] name = "sp-consensus-sassafras" -version = "0.3.1-dev" +version = "0.3.2-dev" dependencies = [ "async-trait", "merlin", diff --git a/bin/node-sassafras/node/Cargo.toml b/bin/node-sassafras/node/Cargo.toml index 72845823eaeb9..ba330f95b5af7 100644 --- a/bin/node-sassafras/node/Cargo.toml +++ b/bin/node-sassafras/node/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "node-sassafras" -version = "0.3.1-dev" +version = "0.3.2-dev" authors = ["Parity Technologies "] description = "Node testbed for Sassafras consensus." homepage = "https://substrate.io/" @@ -26,8 +26,8 @@ sc-telemetry = { version = "4.0.0-dev", path = "../../../client/telemetry" } sc-keystore = { version = "4.0.0-dev", path = "../../../client/keystore" } sc-transaction-pool = { version = "4.0.0-dev", path = "../../../client/transaction-pool" } sc-transaction-pool-api = { version = "4.0.0-dev", path = "../../../client/transaction-pool/api" } -sc-consensus-sassafras = { version = "0.3.1-dev", path = "../../../client/consensus/sassafras" } -sp-consensus-sassafras = { version = "0.3.1-dev", path = "../../../primitives/consensus/sassafras" } +sc-consensus-sassafras = { version = "0.3.2-dev", path = "../../../client/consensus/sassafras" } +sp-consensus-sassafras = { version = "0.3.2-dev", path = "../../../primitives/consensus/sassafras" } sp-consensus = { version = "0.10.0-dev", path = "../../../primitives/consensus/common" } sc-consensus = { version = "0.10.0-dev", path = "../../../client/consensus/common" } sc-finality-grandpa = { version = "0.10.0-dev", path = "../../../client/finality-grandpa" } @@ -56,7 +56,7 @@ frame-benchmarking = { version = "4.0.0-dev", path = "../../../frame/benchmarkin frame-benchmarking-cli = { version = "4.0.0-dev", path = "../../../utils/frame/benchmarking-cli" } # Local Dependencies -node-sassafras-runtime = { version = "0.3.1-dev", path = "../runtime" } +node-sassafras-runtime = { version = "0.3.2-dev", path = "../runtime" } # CLI-specific dependencies try-runtime-cli = { version = "0.10.0-dev", optional = true, path = "../../../utils/frame/try-runtime/cli" } diff --git a/bin/node-sassafras/runtime/Cargo.toml b/bin/node-sassafras/runtime/Cargo.toml index 8fe0108ae4de0..a2b99a096956c 100644 --- a/bin/node-sassafras/runtime/Cargo.toml +++ b/bin/node-sassafras/runtime/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "node-sassafras-runtime" -version = "0.3.1-dev" +version = "0.3.2-dev" authors = ["Parity Technologies "] description = "Runtime testbed for Sassafras consensus." homepage = "https://substrate.io/" @@ -15,7 +15,7 @@ targets = ["x86_64-unknown-linux-gnu"] codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false, features = ["derive"] } scale-info = { version = "2.1.1", default-features = false, features = ["derive"] } -pallet-sassafras = { version = "0.3.1-dev", default-features = false, path = "../../../frame/sassafras" } +pallet-sassafras = { version = "0.3.2-dev", default-features = false, path = "../../../frame/sassafras" } pallet-balances = { version = "4.0.0-dev", default-features = false, path = "../../../frame/balances" } pallet-session = { version = "4.0.0-dev", default-features = false, path = "../../../frame/session" } frame-support = { version = "4.0.0-dev", default-features = false, path = "../../../frame/support" } @@ -28,7 +28,7 @@ pallet-transaction-payment = { version = "4.0.0-dev", default-features = false, frame-executive = { version = "4.0.0-dev", default-features = false, path = "../../../frame/executive" } 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-sassafras = { version = "0.3.1-dev", default-features = false, path = "../../../primitives/consensus/sassafras" } +sp-consensus-sassafras = { version = "0.3.2-dev", default-features = false, path = "../../../primitives/consensus/sassafras" } sp-core = { version = "7.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" } diff --git a/client/consensus/sassafras/Cargo.toml b/client/consensus/sassafras/Cargo.toml index f280841fd266f..dddfdd744d92c 100644 --- a/client/consensus/sassafras/Cargo.toml +++ b/client/consensus/sassafras/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sc-consensus-sassafras" -version = "0.3.1-dev" +version = "0.3.2-dev" authors = ["Parity Technologies "] description = "Sassafras consensus algorithm for substrate" edition = "2021" @@ -33,7 +33,7 @@ sp-application-crypto = { version = "7.0.0", path = "../../../primitives/applica sp-block-builder = { version = "4.0.0-dev", path = "../../../primitives/block-builder" } sp-blockchain = { version = "4.0.0-dev", path = "../../../primitives/blockchain" } sp-consensus = { version = "0.10.0-dev", path = "../../../primitives/consensus/common" } -sp-consensus-sassafras = { version = "0.3.1-dev", path = "../../../primitives/consensus/sassafras" } +sp-consensus-sassafras = { version = "0.3.2-dev", path = "../../../primitives/consensus/sassafras" } sp-consensus-slots = { version = "0.10.0-dev", path = "../../../primitives/consensus/slots" } sp-consensus-vrf = { version = "0.10.0-dev", path = "../../../primitives/consensus/vrf" } sp-core = { version = "7.0.0", path = "../../../primitives/core" } diff --git a/frame/sassafras/Cargo.toml b/frame/sassafras/Cargo.toml index 22aee8632c968..4c6e1c6fdcfb2 100644 --- a/frame/sassafras/Cargo.toml +++ b/frame/sassafras/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pallet-sassafras" -version = "0.3.1-dev" +version = "0.3.2-dev" authors = ["Parity Technologies "] edition = "2021" license = "Apache-2.0" @@ -22,7 +22,7 @@ pallet-session = { version = "4.0.0-dev", default-features = false, path = "../s pallet-timestamp = { version = "4.0.0-dev", default-features = false, path = "../timestamp" } scale-info = { version = "2.0.1", default-features = false, features = ["derive"] } sp-application-crypto = { version = "7.0.0", default-features = false, path = "../../primitives/application-crypto" } -sp-consensus-sassafras = { version = "0.3.1-dev", default-features = false, path = "../../primitives/consensus/sassafras" } +sp-consensus-sassafras = { version = "0.3.2-dev", default-features = false, path = "../../primitives/consensus/sassafras" } sp-io = { version = "7.0.0", default-features = false, path = "../../primitives/io" } sp-runtime = { version = "7.0.0", default-features = false, path = "../../primitives/runtime" } sp-std = { version = "5.0.0", default-features = false, path = "../../primitives/std" } diff --git a/primitives/consensus/sassafras/Cargo.toml b/primitives/consensus/sassafras/Cargo.toml index 7fdec9e22371d..15e7ea7c72bd1 100644 --- a/primitives/consensus/sassafras/Cargo.toml +++ b/primitives/consensus/sassafras/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sp-consensus-sassafras" -version = "0.3.1-dev" +version = "0.3.2-dev" authors = ["Parity Technologies "] description = "Primitives for Sassafras consensus" edition = "2021" @@ -28,7 +28,8 @@ sp-inherents = { version = "4.0.0-dev", default-features = false, path = "../../ sp-keystore = { version = "0.13.0", default-features = false, optional = true, path = "../../keystore" } sp-runtime = { version = "7.0.0", default-features = false, path = "../../runtime" } sp-std = { version = "5.0.0", default-features = false, path = "../../std" } - sp-timestamp = { version = "4.0.0-dev", optional = true, path = "../../timestamp" } +sp-timestamp = { version = "4.0.0-dev", optional = true, path = "../../timestamp" } +#vrf-ad-kc = { git = "https://github.com/w3f/ring-vrf", default-features = false } [features] default = ["std"] diff --git a/test-utils/runtime/Cargo.toml b/test-utils/runtime/Cargo.toml index 22d50299d8262..9f0af69d6a67c 100644 --- a/test-utils/runtime/Cargo.toml +++ b/test-utils/runtime/Cargo.toml @@ -18,7 +18,7 @@ pallet-beefy-mmr = { version = "4.0.0-dev", default-features = false, path = ".. sp-application-crypto = { version = "7.0.0", default-features = false, path = "../../primitives/application-crypto" } sp-consensus-aura = { version = "0.10.0-dev", default-features = false, path = "../../primitives/consensus/aura" } sp-consensus-babe = { version = "0.10.0-dev", default-features = false, path = "../../primitives/consensus/babe" } -sp-consensus-sassafras = { version = "0.3.1-dev", default-features = false, path = "../../primitives/consensus/sassafras" } +sp-consensus-sassafras = { version = "0.3.2-dev", default-features = false, path = "../../primitives/consensus/sassafras" } sp-block-builder = { version = "4.0.0-dev", default-features = false, path = "../../primitives/block-builder" } codec = { package = "parity-scale-codec", version = "3.2.2", default-features = false, features = ["derive"] } scale-info = { version = "2.1.1", default-features = false, features = ["derive"] } @@ -36,7 +36,7 @@ sp-session = { version = "4.0.0-dev", default-features = false, path = "../../pr sp-api = { version = "4.0.0-dev", default-features = false, path = "../../primitives/api" } sp-runtime = { version = "7.0.0", default-features = false, path = "../../primitives/runtime" } pallet-babe = { version = "4.0.0-dev", default-features = false, path = "../../frame/babe" } -pallet-sassafras = { version = "0.3.1-dev", default-features = false, path = "../../frame/sassafras" } +pallet-sassafras = { version = "0.3.2-dev", default-features = false, path = "../../frame/sassafras" } frame-system = { version = "4.0.0-dev", default-features = false, path = "../../frame/system" } frame-system-rpc-runtime-api = { version = "4.0.0-dev", default-features = false, path = "../../frame/system/rpc/runtime-api" } pallet-timestamp = { version = "4.0.0-dev", default-features = false, path = "../../frame/timestamp" }