Skip to content

Commit 47f1ee9

Browse files
github-actions[bot]EgorPopelyaevParityReleases
authored
[stable2512] Post crates release activities for stable2512-3 (#11442)
Automated PR containing post-crates-release activities: - NODE_VERSION bumps (if selected) - Path dependencies replacement - Zepter fixes - Taplo formatting - PRDocs reorganization (if prdocs exist) --------- Co-authored-by: EgorPopelyaev <egor@parity.io> Co-authored-by: ParityReleases <release-team@parity.io>
1 parent 89aa245 commit 47f1ee9

11 files changed

Lines changed: 35 additions & 30 deletions

File tree

Cargo.lock

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

Plan.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
# generated by parity-publish v0.10.10
2-
# command: parity-publish plan --prdoc prdoc/pr_11018.prdoc
1+
# generated by parity-publish v0.10.12
2+
# command: parity-publish plan --prdoc prdoc
33

44
[options]
55

@@ -107,7 +107,7 @@ to = "12.0.0"
107107
# substrate/client/network/types
108108
name = "sc-network-types"
109109
from = "0.20.0"
110-
to = "0.20.1"
110+
to = "0.20.2"
111111
bump = "minor"
112112
reason = "changed"
113113

@@ -1223,7 +1223,7 @@ reason = "changed"
12231223
# substrate/client/network
12241224
name = "sc-network"
12251225
from = "0.55.0"
1226-
to = "0.55.1"
1226+
to = "0.55.2"
12271227
bump = "minor"
12281228
reason = "changed"
12291229

@@ -3970,9 +3970,9 @@ to = "1.0.0"
39703970
[[crate]]
39713971
# cumulus/client/consensus/aura
39723972
name = "cumulus-client-consensus-aura"
3973-
from = "0.27.0"
3974-
to = "0.28.0"
3975-
bump = "major"
3973+
from = "0.28.0"
3974+
to = "0.28.1"
3975+
bump = "patch"
39763976
reason = "changed"
39773977

39783978
[[crate]]

cumulus/client/consensus/aura/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "cumulus-client-consensus-aura"
33
description = "AURA consensus algorithm for parachains"
4-
version = "0.28.0"
4+
version = "0.28.1"
55
authors.workspace = true
66
edition.workspace = true
77
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
@@ -90,8 +90,8 @@ tracing = { workspace = true, default-features = true }
9090

9191
[dev-dependencies]
9292
cumulus-test-client = { workspace = true }
93-
cumulus-test-relay-sproof-builder = { workspace = true, default-features = false }
93+
cumulus-test-relay-sproof-builder = { default-features = false, workspace = true }
9494
rstest = { workspace = true }
95-
sp-keyring = { workspace = true, default-features = false }
96-
sp-tracing = { workspace = true, default-features = false }
97-
sp-version = { workspace = true, default-features = false }
95+
sp-keyring = { default-features = false, workspace = true }
96+
sp-tracing = { default-features = false, workspace = true }
97+
sp-version = { default-features = false, workspace = true }

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,4 @@ pub mod aura;
1919
/// The current node version for cumulus official binaries, which takes the basic
2020
/// SemVer form `<major>.<minor>.<patch>`. It should correspond to the latest
2121
/// `polkadot` version of a stable release.
22-
pub const NODE_VERSION: &'static str = "1.21.2";
22+
pub const NODE_VERSION: &'static str = "1.21.3";

polkadot/node/primitives/src/lib.rs

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

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

scripts/release/templates/crates_list.md.tera

Lines changed: 16 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,20 @@ The following crates were updated to the corresponding versions:
22

33
<details>
44
<summary>Click to see crates list</summary>
5-
- pallet-election-provider-multi-block@0.6.1
6-
- pallet-staking-async-rc-client@0.7.3
7-
- pallet-staking-async@0.10.4
8-
- asset-hub-westend-runtime@0.42.3
9-
- pallet-session@45.2.0
10-
- pallet-society@45.1.0
11-
- sp-staking@42.2.0
12-
- pallet-fast-unstake@44.1.0
13-
- pallet-nomination-pools@43.1.0
14-
- pallet-staking@45.1.0
15-
- pallet-nomination-pools-benchmarking@43.0.1
5+
6+
- pallet-election-provider-multi-block@0.6.1
7+
- pallet-staking-async-rc-client@0.7.3
8+
- pallet-staking-async@0.10.4
9+
- asset-hub-westend-runtime@0.42.3
10+
- pallet-session@45.2.0
11+
- pallet-society@45.1.0
12+
- sp-staking@42.2.0
13+
- pallet-fast-unstake@44.1.0
14+
- pallet-nomination-pools@43.1.0
15+
- pallet-staking@45.1.0
16+
- pallet-nomination-pools-benchmarking@43.0.1
17+
- cumulus-client-consensus-aura@0.28.1
18+
- sc-network-types@0.20.2
19+
- sc-network@0.55.2
20+
1621
</details>

substrate/client/network/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 network protocol"
33
name = "sc-network"
4-
version = "0.55.1"
4+
version = "0.55.2"
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)