Skip to content

Commit 3c88ea3

Browse files
[stable2506] Post crates release changes (#10093)
1 parent 1ed5180 commit 3c88ea3

File tree

12 files changed

+27
-27
lines changed

12 files changed

+27
-27
lines changed

Cargo.lock

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

Plan.toml

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -918,9 +918,9 @@ reason = "changed"
918918
[[crate]]
919919
# polkadot/node/primitives
920920
name = "polkadot-node-primitives"
921-
from = "19.0.0"
922-
to = "20.0.0"
923-
bump = "major"
921+
from = "20.0.0"
922+
to = "20.1.0"
923+
bump = "minor"
924924
reason = "changed"
925925

926926
[[crate]]
@@ -1236,8 +1236,8 @@ reason = "changed"
12361236
[[crate]]
12371237
# substrate/client/statement-store
12381238
name = "sc-statement-store"
1239-
from = "22.0.0"
1240-
to = "22.1.0"
1239+
from = "22.1.0"
1240+
to = "22.2.0"
12411241
bump = "minor"
12421242
reason = "changed"
12431243

@@ -1602,8 +1602,8 @@ reason = "changed"
16021602
[[crate]]
16031603
# substrate/frame/ranked-collective
16041604
name = "pallet-ranked-collective"
1605-
from = "41.0.0"
1606-
to = "41.0.1"
1605+
from = "41.0.1"
1606+
to = "41.0.2"
16071607
bump = "patch"
16081608
reason = "changed"
16091609

@@ -2088,9 +2088,9 @@ reason = "changed"
20882088
[[crate]]
20892089
# substrate/client/network/statement
20902090
name = "sc-network-statement"
2091-
from = "0.32.0"
2092-
to = "0.33.0"
2093-
bump = "major"
2091+
from = "0.33.0"
2092+
to = "0.33.1"
2093+
bump = "patch"
20942094
reason = "changed"
20952095

20962096
[[crate]]
@@ -3644,9 +3644,9 @@ reason = "changed"
36443644
[[crate]]
36453645
# polkadot/node/network/approval-distribution
36463646
name = "polkadot-approval-distribution"
3647-
from = "23.0.0"
3648-
to = "24.0.0"
3649-
bump = "major"
3647+
from = "24.0.0"
3648+
to = "24.0.1"
3649+
bump = "patch"
36503650
reason = "changed"
36513651

36523652
[[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.19.3";
28+
pub const NODE_VERSION: &'static str = "1.19.4";
2929

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

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "polkadot-approval-distribution"
3-
version = "24.0.0"
3+
version = "24.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
@@ -33,7 +33,7 @@ gum.default-features = true
3333
gum.workspace = true
3434

3535
[dev-dependencies]
36-
sc-keystore = { workspace = true, default-features = false }
36+
sc-keystore = { default-features = false, workspace = true }
3737
sp-application-crypto = { default-features = true, workspace = true }
3838
sp-authority-discovery = { default-features = true, workspace = true }
3939
sp-core = { features = ["std"], default-features = true, workspace = true }
@@ -46,4 +46,4 @@ rand_chacha = { workspace = true, default-features = true }
4646
schnorrkel = { workspace = true }
4747
# rand_core should match schnorrkel
4848
rand_core = { workspace = true }
49-
sp-tracing = { workspace = true, default-features = false }
49+
sp-tracing = { default-features = false, 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 = "20.0.0"
4+
version = "20.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
@@ -62,7 +62,7 @@ pub use disputes::{
6262
/// relatively rare.
6363
///
6464
/// The associated worker binaries should use the same version as the node that spawns them.
65-
pub const NODE_VERSION: &'static str = "1.19.3";
65+
pub const NODE_VERSION: &'static str = "1.19.4";
6666

6767
// For a 16-ary Merkle Prefix Trie, we can expect at most 16 32-byte hashes per node
6868
// plus some overhead:
File renamed without changes.
File renamed without changes.
File renamed without changes.

substrate/client/network/statement/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
description = "Substrate statement protocol"
33
name = "sc-network-statement"
4-
version = "0.33.0"
4+
version = "0.33.1"
55
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
66
authors.workspace = true
77
edition.workspace = true

0 commit comments

Comments
 (0)