Skip to content

Commit d173a5f

Browse files
github-actions[bot]EgorPopelyaevParityReleases
authored
[stable2506] Post crates release activities (#10753)
Automated PR containing post-crates-release activities: - NODE_VERSION bumps - Path dependencies replacement - Zepter fixes - Taplo formatting - PRDocs reorganization --------- Co-authored-by: EgorPopelyaev <[email protected]> Co-authored-by: ParityReleases <[email protected]>
1 parent 5b7436b commit d173a5f

File tree

12 files changed

+41
-37
lines changed

12 files changed

+41
-37
lines changed

Cargo.lock

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

Plan.toml

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# generated by parity-publish v0.10.5
1+
# generated by parity-publish v0.10.6
22
# command: parity-publish plan --prdoc prdoc
33

44
[options]
@@ -158,9 +158,9 @@ to = "11.0.0"
158158
[[crate]]
159159
# substrate/primitives/metadata-ir
160160
name = "sp-metadata-ir"
161-
from = "0.10.0"
162-
to = "0.11.0"
163-
bump = "major"
161+
from = "0.11.0"
162+
to = "0.11.1"
163+
bump = "patch"
164164
reason = "changed"
165165

166166
[[crate]]
@@ -808,9 +808,9 @@ reason = "changed"
808808
[[crate]]
809809
# substrate/frame/support
810810
name = "frame-support"
811-
from = "40.1.0"
812-
to = "41.0.0"
813-
bump = "major"
811+
from = "41.0.0"
812+
to = "41.0.1"
813+
bump = "patch"
814814
reason = "changed"
815815

816816
[[crate]]
@@ -886,9 +886,9 @@ to = "0.3.4"
886886
[[crate]]
887887
# substrate/utils/wasm-builder
888888
name = "substrate-wasm-builder"
889-
from = "26.0.1"
890-
to = "27.0.0"
891-
bump = "major"
889+
from = "27.0.0"
890+
to = "27.0.1"
891+
bump = "patch"
892892
reason = "changed"
893893

894894
[[crate]]
@@ -1132,9 +1132,9 @@ to = "28.0.0"
11321132
[[crate]]
11331133
# substrate/frame/examples/view-functions
11341134
name = "pallet-example-view-functions"
1135-
from = "0.2.0"
1136-
to = "0.3.0"
1137-
bump = "major"
1135+
from = "0.3.0"
1136+
to = "0.3.1"
1137+
bump = "patch"
11381138
reason = "changed"
11391139

11401140
[[crate]]
@@ -1236,8 +1236,8 @@ reason = "changed"
12361236
[[crate]]
12371237
# substrate/client/tracing
12381238
name = "sc-tracing"
1239-
from = "40.0.0"
1240-
to = "40.0.1"
1239+
from = "40.0.1"
1240+
to = "40.0.2"
12411241
bump = "patch"
12421242
reason = "changed"
12431243

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.6";
28+
pub const NODE_VERSION: &'static str = "1.19.7";
2929

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

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.6";
65+
pub const NODE_VERSION: &'static str = "1.19.7";
6666

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

scripts/release/parse-crates-names.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/env python3
1+
#!/usr/bin/env python3
22
"""
33
Script to parse changed_crates file and extract crate names with versions.
44
Extracts lines with 'name = "..."' and '+to = "..."' patterns and writes
Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
11
The following crates were updated to the corresponding versions:
22

3-
3+
4+
5+
6+
7+

substrate/client/tracing/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "sc-tracing"
3-
version = "40.0.1"
3+
version = "40.0.2"
44
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
55
authors.workspace = true
66
edition.workspace = true

substrate/frame/examples/view-functions/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "pallet-example-view-functions"
3-
version = "0.3.0"
3+
version = "0.3.1"
44
authors.workspace = true
55
edition.workspace = true
66
license.workspace = true

substrate/frame/support/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "frame-support"
3-
version = "41.0.0"
3+
version = "41.0.1"
44
authors.workspace = true
55
edition.workspace = true
66
license = "Apache-2.0"

0 commit comments

Comments
 (0)