Skip to content

Commit 3366310

Browse files
[stable2412] Post crates release changes (#10098)
1 parent decd6c8 commit 3366310

File tree

9 files changed

+16
-16
lines changed

9 files changed

+16
-16
lines changed

Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1031,7 +1031,7 @@ people-westend-emulated-chain = { path = "cumulus/parachains/integration-tests/e
10311031
people-westend-runtime = { path = "cumulus/parachains/runtimes/people/people-westend", version = "0.13.2" }
10321032
pin-project = { version = "1.1.3" }
10331033
platforms = { version = "3.4" }
1034-
polkadot-approval-distribution = { path = "polkadot/node/network/approval-distribution", default-features = false, version = "21.0.0" }
1034+
polkadot-approval-distribution = { path = "polkadot/node/network/approval-distribution", default-features = false, version = "21.0.1" }
10351035
polkadot-availability-bitfield-distribution = { path = "polkadot/node/network/bitfield-distribution", default-features = false, version = "21.0.0" }
10361036
polkadot-availability-distribution = { path = "polkadot/node/network/availability-distribution", default-features = false, version = "21.0.0" }
10371037
polkadot-availability-recovery = { path = "polkadot/node/network/availability-recovery", default-features = false, version = "21.0.0" }
@@ -1063,7 +1063,7 @@ polkadot-node-core-pvf-prepare-worker = { path = "polkadot/node/core/pvf/prepare
10631063
polkadot-node-core-runtime-api = { path = "polkadot/node/core/runtime-api", default-features = false, version = "21.0.1" }
10641064
polkadot-node-metrics = { path = "polkadot/node/metrics", default-features = false, version = "21.1.0" }
10651065
polkadot-node-network-protocol = { path = "polkadot/node/network/protocol", default-features = false, version = "21.0.0" }
1066-
polkadot-node-primitives = { path = "polkadot/node/primitives", default-features = false, version = "17.0.1" }
1066+
polkadot-node-primitives = { path = "polkadot/node/primitives", default-features = false, version = "17.1.0" }
10671067
polkadot-node-subsystem = { path = "polkadot/node/subsystem", default-features = false, version = "21.0.0" }
10681068
polkadot-node-subsystem-test-helpers = { path = "polkadot/node/subsystem-test-helpers", version = "1.0.0" }
10691069
polkadot-node-subsystem-types = { path = "polkadot/node/subsystem-types", default-features = false, version = "21.0.1" }

Plan.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -855,9 +855,9 @@ reason = "changed"
855855
[[crate]]
856856
# polkadot/node/primitives
857857
name = "polkadot-node-primitives"
858-
from = "17.0.0"
859-
to = "17.0.1"
860-
bump = "patch"
858+
from = "17.0.1"
859+
to = "17.1.0"
860+
bump = "minor"
861861
reason = "changed"
862862

863863
[[crate]]
@@ -3571,9 +3571,9 @@ to = "0.1.0"
35713571
[[crate]]
35723572
# polkadot/node/network/approval-distribution
35733573
name = "polkadot-approval-distribution"
3574-
from = "20.0.0"
3575-
to = "21.0.0"
3576-
bump = "major"
3574+
from = "21.0.0"
3575+
to = "21.0.1"
3576+
bump = "patch"
35773577
reason = "changed"
35783578

35793579
[[crate]]

cumulus/polkadot-omni-node/lib/src/nodes/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ use sc_service::{Configuration, TaskManager};
2525
/// The current node version for cumulus official binaries, which takes the basic
2626
/// SemVer form `<major>.<minor>.<patch>`. It should correspond to the latest
2727
/// `polkadot` version of a stable release.
28-
pub const NODE_VERSION: &'static str = "1.17.10";
28+
pub const NODE_VERSION: &'static str = "1.17.11";
2929

3030
/// Trait that extends the `DynNodeSpec` trait with manual seal related logic.
3131
///

polkadot/node/network/approval-distribution/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "polkadot-approval-distribution"
3-
version = "21.0.0"
3+
version = "21.0.1"
44
description = "Polkadot Approval Distribution subsystem for the distribution of assignments and approvals for approval checks on candidates over the network."
55
authors.workspace = true
66
edition.workspace = true

polkadot/node/primitives/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "polkadot-node-primitives"
33
description = "Primitives types for the Node-side"
4-
version = "17.0.1"
4+
version = "17.1.0"
55
authors.workspace = true
66
edition.workspace = true
77
license.workspace = true

polkadot/node/primitives/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ pub use disputes::{
5959
/// relatively rare.
6060
///
6161
/// The associated worker binaries should use the same version as the node that spawns them.
62-
pub const NODE_VERSION: &'static str = "1.17.10";
62+
pub const NODE_VERSION: &'static str = "1.17.11";
6363

6464
// For a 16-ary Merkle Prefix Trie, we can expect at most 16 32-byte hashes per node
6565
// plus some overhead:

umbrella/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2512,7 +2512,7 @@ version = "20.0.2"
25122512
path = "../polkadot/node/network/approval-distribution"
25132513
default-features = false
25142514
optional = true
2515-
version = "21.0.0"
2515+
version = "21.0.1"
25162516

25172517
[dependencies.polkadot-availability-bitfield-distribution]
25182518
path = "../polkadot/node/network/bitfield-distribution"
@@ -2698,7 +2698,7 @@ version = "21.0.0"
26982698
path = "../polkadot/node/primitives"
26992699
default-features = false
27002700
optional = true
2701-
version = "17.0.1"
2701+
version = "17.1.0"
27022702

27032703
[dependencies.polkadot-node-subsystem]
27042704
path = "../polkadot/node/subsystem"

0 commit comments

Comments
 (0)