Skip to content

Commit f7103db

Browse files
[stable2503] Post crate release changes (#9840)
This PR contains: - crates version bumps - node version bump - prdocs reordering - formatting for the pipeline requirenments
1 parent 7f64908 commit f7103db

File tree

11 files changed

+29
-29
lines changed

11 files changed

+29
-29
lines changed

Cargo.lock

Lines changed: 6 additions & 6 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
@@ -2622,8 +2622,8 @@ reason = "changed"
26222622
[[crate]]
26232623
# polkadot/xcm/pallet-xcm
26242624
name = "pallet-xcm"
2625-
from = "19.2.0"
2626-
to = "19.2.1"
2625+
from = "19.2.1"
2626+
to = "19.2.2"
26272627
bump = "patch"
26282628
reason = "changed"
26292629

@@ -2986,9 +2986,9 @@ reason = "changed"
29862986
[[crate]]
29872987
# polkadot/runtime/rococo
29882988
name = "rococo-runtime"
2989-
from = "22.1.0"
2990-
to = "23.0.0"
2991-
bump = "major"
2989+
from = "23.0.0"
2990+
to = "23.0.1"
2991+
bump = "patch"
29922992
reason = "changed"
29932993

29942994
[[crate]]
@@ -3072,9 +3072,9 @@ reason = "changed"
30723072
[[crate]]
30733073
# polkadot/runtime/westend
30743074
name = "westend-runtime"
3075-
from = "22.3.0"
3076-
to = "23.0.0"
3077-
bump = "major"
3075+
from = "23.0.0"
3076+
to = "23.0.1"
3077+
bump = "patch"
30783078
reason = "changed"
30793079

30803080
[[crate]]
@@ -3322,25 +3322,25 @@ reason = "changed"
33223322
[[crate]]
33233323
# cumulus/parachains/runtimes/assets/asset-hub-rococo
33243324
name = "asset-hub-rococo-runtime"
3325-
from = "0.25.2"
3326-
to = "0.25.3"
3325+
from = "0.25.3"
3326+
to = "0.25.4"
33273327
bump = "patch"
33283328
reason = "changed"
33293329

33303330
[[crate]]
33313331
# cumulus/parachains/runtimes/assets/asset-hub-westend
33323332
name = "asset-hub-westend-runtime"
3333-
from = "0.31.0"
3334-
to = "0.31.1"
3333+
from = "0.31.1"
3334+
to = "0.31.2"
33353335
bump = "patch"
33363336
reason = "changed"
33373337

33383338
[[crate]]
33393339
# cumulus/parachains/runtimes/assets/test-utils
33403340
name = "asset-test-utils"
3341-
from = "21.0.1"
3342-
to = "23.0.0"
3343-
bump = "major"
3341+
from = "23.0.0"
3342+
to = "23.0.1"
3343+
bump = "patch"
33443344
reason = "changed"
33453345

33463346
[[crate]]

cumulus/parachains/runtimes/assets/asset-hub-rococo/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "asset-hub-rococo-runtime"
3-
version = "0.25.3"
3+
version = "0.25.4"
44
authors.workspace = true
55
edition.workspace = true
66
description = "Rococo variant of Asset Hub parachain runtime"

cumulus/parachains/runtimes/assets/asset-hub-westend/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "asset-hub-westend-runtime"
3-
version = "0.31.1"
3+
version = "0.31.2"
44
authors.workspace = true
55
edition.workspace = true
66
description = "Westend variant of Asset Hub parachain runtime"

cumulus/parachains/runtimes/assets/test-utils/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "asset-test-utils"
3-
version = "23.0.0"
3+
version = "23.0.1"
44
authors.workspace = true
55
edition.workspace = true
66
description = "Test utils for Asset Hub runtimes."

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.18.9";
28+
pub const NODE_VERSION: &'static str = "1.18.10";
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
@@ -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.18.9";
62+
pub const NODE_VERSION: &'static str = "1.18.10";
6363

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

polkadot/runtime/rococo/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "rococo-runtime"
33
build = "build.rs"
4-
version = "23.0.0"
4+
version = "23.0.1"
55
description = "Rococo testnet Relay Chain runtime."
66
authors.workspace = true
77
edition.workspace = true

polkadot/runtime/westend/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "westend-runtime"
33
build = "build.rs"
4-
version = "23.0.0"
4+
version = "23.0.1"
55
description = "Westend testnet Relay Chain runtime."
66
authors.workspace = true
77
edition.workspace = true

polkadot/xcm/pallet-xcm/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-xcm"
3-
version = "19.2.1"
3+
version = "19.2.2"
44
description = "A pallet for handling XCM programs."
55
authors.workspace = true
66
edition.workspace = true

0 commit comments

Comments
 (0)