diff --git a/polkadot/Cargo.lock b/polkadot/Cargo.lock index f5e20a9f49..8428f470f7 100644 --- a/polkadot/Cargo.lock +++ b/polkadot/Cargo.lock @@ -2547,7 +2547,7 @@ dependencies = [ [[package]] name = "kusama-runtime" -version = "0.8.24" +version = "0.8.25" dependencies = [ "bitvec", "frame-benchmarking", @@ -4658,7 +4658,7 @@ checksum = "feb3b2b1033b8a60b4da6ee470325f887758c95d5320f52f9ce0df055a55940e" [[package]] name = "polkadot" -version = "0.8.24" +version = "0.8.25" dependencies = [ "assert_cmd", "futures 0.3.5", @@ -4724,7 +4724,7 @@ dependencies = [ [[package]] name = "polkadot-cli" -version = "0.8.24" +version = "0.8.25" dependencies = [ "frame-benchmarking-cli", "futures 0.3.5", @@ -4784,7 +4784,7 @@ dependencies = [ [[package]] name = "polkadot-erasure-coding" -version = "0.8.24" +version = "0.8.25" dependencies = [ "derive_more 0.15.0", "parity-scale-codec", @@ -5114,7 +5114,7 @@ dependencies = [ [[package]] name = "polkadot-parachain" -version = "0.8.24" +version = "0.8.25" dependencies = [ "derive_more 0.99.11", "futures 0.3.5", @@ -5156,7 +5156,7 @@ dependencies = [ [[package]] name = "polkadot-primitives" -version = "0.8.24" +version = "0.8.25" dependencies = [ "bitvec", "frame-system", @@ -5180,7 +5180,7 @@ dependencies = [ [[package]] name = "polkadot-rpc" -version = "0.8.24" +version = "0.8.25" dependencies = [ "jsonrpc-core", "pallet-transaction-payment-rpc", @@ -5206,7 +5206,7 @@ dependencies = [ [[package]] name = "polkadot-runtime" -version = "0.8.24" +version = "0.8.25" dependencies = [ "bitvec", "frame-benchmarking", @@ -5280,7 +5280,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-common" -version = "0.8.24" +version = "0.8.25" dependencies = [ "bitvec", "frame-benchmarking", @@ -5369,7 +5369,7 @@ dependencies = [ [[package]] name = "polkadot-service" -version = "0.8.24" +version = "0.8.25" dependencies = [ "env_logger", "frame-benchmarking", @@ -5514,7 +5514,7 @@ dependencies = [ [[package]] name = "polkadot-statement-table" -version = "0.8.24" +version = "0.8.25" dependencies = [ "parity-scale-codec", "polkadot-primitives", @@ -5523,7 +5523,7 @@ dependencies = [ [[package]] name = "polkadot-test-runtime" -version = "0.8.24" +version = "0.8.25" dependencies = [ "bitvec", "frame-executive", @@ -5652,7 +5652,7 @@ dependencies = [ [[package]] name = "polkadot-validation" -version = "0.8.24" +version = "0.8.25" dependencies = [ "derive_more 0.14.1", "futures 0.3.5", @@ -6317,7 +6317,7 @@ dependencies = [ [[package]] name = "rococo-v1-runtime" -version = "0.8.24" +version = "0.8.25" dependencies = [ "frame-executive", "frame-support", @@ -8764,7 +8764,7 @@ dependencies = [ [[package]] name = "test-parachain-adder" -version = "0.8.24" +version = "0.8.25" dependencies = [ "dlmalloc", "parity-scale-codec", @@ -8777,7 +8777,7 @@ dependencies = [ [[package]] name = "test-parachain-halt" -version = "0.8.24" +version = "0.8.25" dependencies = [ "substrate-wasm-builder-runner", ] @@ -9878,7 +9878,7 @@ dependencies = [ [[package]] name = "westend-runtime" -version = "0.8.24" +version = "0.8.25" dependencies = [ "bitvec", "frame-benchmarking", diff --git a/polkadot/Cargo.toml b/polkadot/Cargo.toml index 1d36098451..8003c6f6e8 100644 --- a/polkadot/Cargo.toml +++ b/polkadot/Cargo.toml @@ -6,7 +6,7 @@ path = "src/main.rs" name = "polkadot" description = "Implementation of a https://polkadot.network node in Rust based on the Substrate framework." license = "GPL-3.0-only" -version = "0.8.24" +version = "0.8.25" authors = ["Parity Technologies "] edition = "2018" readme = "README.md" diff --git a/polkadot/RELEASE.md b/polkadot/RELEASE.md index b5c5e443b4..0d9364a828 100644 --- a/polkadot/RELEASE.md +++ b/polkadot/RELEASE.md @@ -26,6 +26,7 @@ completion, tag the commit and proceed with the [All Releases](#all-releases) st hours. - [ ] Check that a draft release has been created at https://github.com/paritytech/polkadot/releases with relevant [release notes](#release-notes) - [ ] Check that [build artifacts](#build-artifacts) have been added to the draft-release +- [ ] Check that you have updated the Cargo.toml version. ## Notes diff --git a/polkadot/cli/Cargo.toml b/polkadot/cli/Cargo.toml index 05574d0bc1..d2fd327ef9 100644 --- a/polkadot/cli/Cargo.toml +++ b/polkadot/cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "polkadot-cli" -version = "0.8.24" +version = "0.8.25" authors = ["Parity Technologies "] description = "Polkadot Relay-chain Client Node" edition = "2018" diff --git a/polkadot/erasure-coding/Cargo.toml b/polkadot/erasure-coding/Cargo.toml index bb880232e6..dc7bdf05df 100644 --- a/polkadot/erasure-coding/Cargo.toml +++ b/polkadot/erasure-coding/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "polkadot-erasure-coding" -version = "0.8.24" +version = "0.8.25" authors = ["Parity Technologies "] edition = "2018" diff --git a/polkadot/parachain/Cargo.toml b/polkadot/parachain/Cargo.toml index c365d14d4d..855cdcc6a2 100644 --- a/polkadot/parachain/Cargo.toml +++ b/polkadot/parachain/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "polkadot-parachain" -version = "0.8.24" +version = "0.8.25" authors = ["Parity Technologies "] description = "Types and utilities for creating and working with parachains" edition = "2018" diff --git a/polkadot/parachain/test-parachains/adder/Cargo.toml b/polkadot/parachain/test-parachains/adder/Cargo.toml index c0095a1bd4..1afd20a7f7 100644 --- a/polkadot/parachain/test-parachains/adder/Cargo.toml +++ b/polkadot/parachain/test-parachains/adder/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "test-parachain-adder" -version = "0.8.24" +version = "0.8.25" authors = ["Parity Technologies "] description = "Test parachain which adds to a number as its state transition" edition = "2018" diff --git a/polkadot/parachain/test-parachains/halt/Cargo.toml b/polkadot/parachain/test-parachains/halt/Cargo.toml index 07fee6081c..ca7757dbc9 100644 --- a/polkadot/parachain/test-parachains/halt/Cargo.toml +++ b/polkadot/parachain/test-parachains/halt/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "test-parachain-halt" -version = "0.8.24" +version = "0.8.25" authors = ["Parity Technologies "] description = "Test parachain which executes forever" edition = "2018" diff --git a/polkadot/primitives/Cargo.toml b/polkadot/primitives/Cargo.toml index 1308700e19..bd3ad5b778 100644 --- a/polkadot/primitives/Cargo.toml +++ b/polkadot/primitives/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "polkadot-primitives" -version = "0.8.24" +version = "0.8.25" authors = ["Parity Technologies "] edition = "2018" diff --git a/polkadot/rpc/Cargo.toml b/polkadot/rpc/Cargo.toml index dd2b2526a1..8c8cf114bf 100644 --- a/polkadot/rpc/Cargo.toml +++ b/polkadot/rpc/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "polkadot-rpc" -version = "0.8.24" +version = "0.8.25" authors = ["Parity Technologies "] edition = "2018" diff --git a/polkadot/runtime/common/Cargo.toml b/polkadot/runtime/common/Cargo.toml index 213610bd54..7d4de9249f 100644 --- a/polkadot/runtime/common/Cargo.toml +++ b/polkadot/runtime/common/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "polkadot-runtime-common" -version = "0.8.24" +version = "0.8.25" authors = ["Parity Technologies "] edition = "2018" diff --git a/polkadot/runtime/kusama/Cargo.toml b/polkadot/runtime/kusama/Cargo.toml index 373a95c724..a855fcb1c1 100644 --- a/polkadot/runtime/kusama/Cargo.toml +++ b/polkadot/runtime/kusama/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "kusama-runtime" -version = "0.8.24" +version = "0.8.25" authors = ["Parity Technologies "] edition = "2018" build = "build.rs" diff --git a/polkadot/runtime/polkadot/Cargo.toml b/polkadot/runtime/polkadot/Cargo.toml index 5e78cbf094..d208034bfe 100644 --- a/polkadot/runtime/polkadot/Cargo.toml +++ b/polkadot/runtime/polkadot/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "polkadot-runtime" -version = "0.8.24" +version = "0.8.25" authors = ["Parity Technologies "] edition = "2018" build = "build.rs" diff --git a/polkadot/runtime/rococo-v1/Cargo.toml b/polkadot/runtime/rococo-v1/Cargo.toml index 31256c260a..419a856586 100644 --- a/polkadot/runtime/rococo-v1/Cargo.toml +++ b/polkadot/runtime/rococo-v1/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rococo-v1-runtime" -version = "0.8.24" +version = "0.8.25" authors = ["Parity Technologies "] edition = "2018" build = "build.rs" diff --git a/polkadot/runtime/test-runtime/Cargo.toml b/polkadot/runtime/test-runtime/Cargo.toml index 37c5d843d3..9d9ce348c9 100644 --- a/polkadot/runtime/test-runtime/Cargo.toml +++ b/polkadot/runtime/test-runtime/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "polkadot-test-runtime" -version = "0.8.24" +version = "0.8.25" authors = ["Parity Technologies "] edition = "2018" build = "build.rs" diff --git a/polkadot/runtime/westend/Cargo.toml b/polkadot/runtime/westend/Cargo.toml index 3a41e19e73..bd850ea5be 100644 --- a/polkadot/runtime/westend/Cargo.toml +++ b/polkadot/runtime/westend/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "westend-runtime" -version = "0.8.24" +version = "0.8.25" authors = ["Parity Technologies "] edition = "2018" build = "build.rs" diff --git a/polkadot/service/Cargo.toml b/polkadot/service/Cargo.toml index 3af2e7d2da..ee28bd9361 100644 --- a/polkadot/service/Cargo.toml +++ b/polkadot/service/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "polkadot-service" -version = "0.8.24" +version = "0.8.25" authors = ["Parity Technologies "] edition = "2018" diff --git a/polkadot/statement-table/Cargo.toml b/polkadot/statement-table/Cargo.toml index 24c5b8db84..200b9ae809 100644 --- a/polkadot/statement-table/Cargo.toml +++ b/polkadot/statement-table/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "polkadot-statement-table" -version = "0.8.24" +version = "0.8.25" authors = ["Parity Technologies "] edition = "2018" diff --git a/polkadot/validation/Cargo.toml b/polkadot/validation/Cargo.toml index 8199980b0c..60fe47a873 100644 --- a/polkadot/validation/Cargo.toml +++ b/polkadot/validation/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "polkadot-validation" -version = "0.8.24" +version = "0.8.25" authors = ["Parity Technologies "] edition = "2018"