diff --git a/Cargo.toml b/Cargo.toml index a8e0e9f289e7..0face62f877b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -671,7 +671,7 @@ cpu-time = { version = "1.0.0" } criterion = { version = "0.5.1", default-features = false } cumulus-client-cli = { path = "cumulus/client/cli", default-features = false, version = "0.17.0" } cumulus-client-collator = { path = "cumulus/client/collator", default-features = false, version = "0.17.0" } -cumulus-client-consensus-aura = { path = "cumulus/client/consensus/aura", default-features = false, version = "0.17.0" } +cumulus-client-consensus-aura = { path = "cumulus/client/consensus/aura", default-features = false, version = "0.17.1" } cumulus-client-consensus-common = { path = "cumulus/client/consensus/common", default-features = false, version = "0.17.0" } cumulus-client-consensus-proposer = { path = "cumulus/client/consensus/proposer", default-features = false, version = "0.15.0" } cumulus-client-consensus-relay-chain = { path = "cumulus/client/consensus/relay-chain", default-features = false, version = "0.17.0" } @@ -957,7 +957,7 @@ pallet-state-trie-migration = { path = "substrate/frame/state-trie-migration", d pallet-statement = { default-features = false, path = "substrate/frame/statement" } pallet-sudo = { path = "substrate/frame/sudo", default-features = false, version = "37.0.0" } pallet-template = { path = "templates/solochain/pallets/template", default-features = false, version = "0.1.0" } -pallet-timestamp = { path = "substrate/frame/timestamp", default-features = false, version = "36.0.0" } +pallet-timestamp = { path = "substrate/frame/timestamp", default-features = false, version = "36.0.1" } pallet-tips = { path = "substrate/frame/tips", default-features = false, version = "36.0.0" } pallet-transaction-payment = { path = "substrate/frame/transaction-payment", default-features = false, version = "37.0.0" } pallet-transaction-payment-rpc = { path = "substrate/frame/transaction-payment/rpc", default-features = false, version = "40.0.0" } @@ -1001,7 +1001,7 @@ polkadot-availability-recovery = { path = "polkadot/node/network/availability-re polkadot-cli = { path = "polkadot/cli", default-features = false, version = "17.0.0" } polkadot-collator-protocol = { path = "polkadot/node/network/collator-protocol", default-features = false, version = "17.0.0" } polkadot-core-primitives = { path = "polkadot/core-primitives", default-features = false, version = "15.0.0" } -polkadot-dispute-distribution = { path = "polkadot/node/network/dispute-distribution", default-features = false, version = "17.0.0" } +polkadot-dispute-distribution = { path = "polkadot/node/network/dispute-distribution", default-features = false, version = "17.0.1" } polkadot-erasure-coding = { path = "polkadot/erasure-coding", default-features = false, version = "15.0.0" } polkadot-gossip-support = { path = "polkadot/node/network/gossip-support", default-features = false, version = "17.0.0" } polkadot-network-bridge = { path = "polkadot/node/network/bridge", default-features = false, version = "17.0.0" } @@ -1038,7 +1038,7 @@ polkadot-primitives-test-helpers = { path = "polkadot/primitives/test-helpers", polkadot-rpc = { path = "polkadot/rpc", default-features = false, version = "17.0.0" } polkadot-runtime-common = { path = "polkadot/runtime/common", default-features = false, version = "16.0.0" } polkadot-runtime-metrics = { path = "polkadot/runtime/metrics", default-features = false, version = "16.0.0" } -polkadot-runtime-parachains = { path = "polkadot/runtime/parachains", default-features = false, version = "16.0.1" } +polkadot-runtime-parachains = { path = "polkadot/runtime/parachains", default-features = false, version = "16.0.2" } polkadot-sdk = { path = "umbrella", default-features = false, version = "0.5.0" } polkadot-sdk-docs = { path = "docs/sdk", version = "0.1.0" } polkadot-service = { path = "polkadot/node/service", default-features = false, version = "17.0.1" } diff --git a/cumulus/client/consensus/aura/Cargo.toml b/cumulus/client/consensus/aura/Cargo.toml index f393305ae4fd..269f0d89afce 100644 --- a/cumulus/client/consensus/aura/Cargo.toml +++ b/cumulus/client/consensus/aura/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "cumulus-client-consensus-aura" description = "AURA consensus algorithm for parachains (polkadot v1.15.0)" -version = "0.17.0" +version = "0.17.1" authors.workspace = true edition.workspace = true license = "GPL-3.0-or-later WITH Classpath-exception-2.0" diff --git a/polkadot/node/network/dispute-distribution/Cargo.toml b/polkadot/node/network/dispute-distribution/Cargo.toml index ec15a6058dcc..f624d3a9e424 100644 --- a/polkadot/node/network/dispute-distribution/Cargo.toml +++ b/polkadot/node/network/dispute-distribution/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "polkadot-dispute-distribution" -version = "17.0.0" +version = "17.0.1" description = "Polkadot Dispute Distribution subsystem, which ensures all concerned validators are aware of a dispute and have the relevant votes. (polkadot v1.15.0)" authors.workspace = true edition.workspace = true diff --git a/polkadot/runtime/parachains/Cargo.toml b/polkadot/runtime/parachains/Cargo.toml index c8f3ef85dd7d..3a745a2738a3 100644 --- a/polkadot/runtime/parachains/Cargo.toml +++ b/polkadot/runtime/parachains/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "polkadot-runtime-parachains" -version = "16.0.1" +version = "16.0.2" description = "Relay Chain runtime code responsible for Parachains. (polkadot v1.15.0)" authors.workspace = true edition.workspace = true diff --git a/substrate/frame/timestamp/Cargo.toml b/substrate/frame/timestamp/Cargo.toml index f3482cdda9c6..626d1132d930 100644 --- a/substrate/frame/timestamp/Cargo.toml +++ b/substrate/frame/timestamp/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pallet-timestamp" -version = "36.0.0" +version = "36.0.1" authors.workspace = true edition.workspace = true license = "Apache-2.0" diff --git a/umbrella/Cargo.toml b/umbrella/Cargo.toml index 3148f3a62759..f28a9ada1861 100644 --- a/umbrella/Cargo.toml +++ b/umbrella/Cargo.toml @@ -1402,7 +1402,7 @@ version = "37.0.0" path = "../substrate/frame/timestamp" default-features = false optional = true -version = "36.0.0" +version = "36.0.1" [dependencies.pallet-tips] path = "../substrate/frame/tips" @@ -1528,7 +1528,7 @@ version = "16.0.0" path = "../polkadot/runtime/parachains" default-features = false optional = true -version = "16.0.1" +version = "16.0.2" [dependencies.polkadot-sdk-frame] path = "../substrate/frame" @@ -2008,7 +2008,7 @@ version = "0.17.0" path = "../cumulus/client/consensus/aura" default-features = false optional = true -version = "0.17.0" +version = "0.17.1" [dependencies.cumulus-client-consensus-common] path = "../cumulus/client/consensus/common" @@ -2188,7 +2188,7 @@ version = "17.0.0" path = "../polkadot/node/network/dispute-distribution" default-features = false optional = true -version = "17.0.0" +version = "17.0.1" [dependencies.polkadot-erasure-coding] path = "../polkadot/erasure-coding"