From cd6138aca9a9a00caf31f85937f300c1e3ac355a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 25 Jun 2025 09:50:12 +0000 Subject: [PATCH] Upgrading crates to 1.6.0-c --- chain-extensions/common/Cargo.toml | 2 +- chain-extensions/price/Cargo.toml | 2 +- chain-extensions/token/Cargo.toml | 2 +- node/Cargo.toml | 2 +- pallets/orml-currencies-allowance-extension/Cargo.toml | 2 +- pallets/orml-tokens-management-extension/Cargo.toml | 2 +- pallets/parachain-staking/Cargo.toml | 2 +- pallets/parachain-staking/rpc/Cargo.toml | 2 +- pallets/parachain-staking/rpc/runtime-api/Cargo.toml | 2 +- pallets/treasury-buyout-extension/Cargo.toml | 2 +- pallets/vesting-manager/Cargo.toml | 2 +- runtime/amplitude/Cargo.toml | 2 +- runtime/common/Cargo.toml | 2 +- runtime/foucoco/Cargo.toml | 2 +- runtime/integration-tests/Cargo.toml | 2 +- runtime/pendulum/Cargo.toml | 2 +- 16 files changed, 16 insertions(+), 16 deletions(-) diff --git a/chain-extensions/common/Cargo.toml b/chain-extensions/common/Cargo.toml index 7ca67336d..fb9d67e9d 100644 --- a/chain-extensions/common/Cargo.toml +++ b/chain-extensions/common/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "chain-extension-common" -version = "1.6.0-b" +version = "1.6.0-c" authors = ["Pendulum"] description = "Chain Extension common definitions" edition = "2021" diff --git a/chain-extensions/price/Cargo.toml b/chain-extensions/price/Cargo.toml index de91ae064..659658607 100644 --- a/chain-extensions/price/Cargo.toml +++ b/chain-extensions/price/Cargo.toml @@ -3,7 +3,7 @@ name = "price-chain-extension" description = "Chain extensions for price info" authors = ["Pendulum"] edition = "2021" -version = "1.6.0-b" +version = "1.6.0-c" [package.metadata.docs.rs] targets = ["x86_64-unknown-linux-gnu"] diff --git a/chain-extensions/token/Cargo.toml b/chain-extensions/token/Cargo.toml index e55b81b7d..cbd6c6323 100644 --- a/chain-extensions/token/Cargo.toml +++ b/chain-extensions/token/Cargo.toml @@ -3,7 +3,7 @@ name = "token-chain-extension" description = "Chain extensions for tokens pallet" authors = ["Pendulum"] edition = "2021" -version = "1.6.0-b" +version = "1.6.0-c" [package.metadata.docs.rs] targets = ["x86_64-unknown-linux-gnu"] diff --git a/node/Cargo.toml b/node/Cargo.toml index f337f76ab..6b2dd6ad0 100644 --- a/node/Cargo.toml +++ b/node/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pendulum-node" -version = "1.6.0-b" +version = "1.6.0-c" authors = ["Pendulum"] description = "The Pendulum/Amplitude collator node" homepage = "https://pendulumchain.org" diff --git a/pallets/orml-currencies-allowance-extension/Cargo.toml b/pallets/orml-currencies-allowance-extension/Cargo.toml index 6c2b6c717..b19ddf9b1 100644 --- a/pallets/orml-currencies-allowance-extension/Cargo.toml +++ b/pallets/orml-currencies-allowance-extension/Cargo.toml @@ -2,7 +2,7 @@ authors = ["Pendulum Chain"] edition = "2021" name = "orml-currencies-allowance-extension" -version = "1.6.0-b" +version = "1.6.0-c" [dependencies] codec = { workspace = true, features = ["derive", "max-encoded-len"] } diff --git a/pallets/orml-tokens-management-extension/Cargo.toml b/pallets/orml-tokens-management-extension/Cargo.toml index 4a35e6d25..8b0208d01 100644 --- a/pallets/orml-tokens-management-extension/Cargo.toml +++ b/pallets/orml-tokens-management-extension/Cargo.toml @@ -2,7 +2,7 @@ authors = ["Pendulum Chain"] edition = "2021" name = "orml-tokens-management-extension" -version = "1.6.0-b" +version = "1.6.0-c" [dependencies] codec = { workspace = true, features = ["derive", "max-encoded-len"] } diff --git a/pallets/parachain-staking/Cargo.toml b/pallets/parachain-staking/Cargo.toml index 994ab2dfa..ac42f4161 100644 --- a/pallets/parachain-staking/Cargo.toml +++ b/pallets/parachain-staking/Cargo.toml @@ -3,7 +3,7 @@ authors = ["KILT "] description = "Parachain parachain-staking pallet for collator delegation and selection as well as reward distribution" edition = "2021" name = "parachain-staking" -version = "1.6.0-b" +version = "1.6.0-c" [dev-dependencies] pallet-aura = { workspace = true, default-features = true } diff --git a/pallets/parachain-staking/rpc/Cargo.toml b/pallets/parachain-staking/rpc/Cargo.toml index 6df97b42e..dc01ca310 100644 --- a/pallets/parachain-staking/rpc/Cargo.toml +++ b/pallets/parachain-staking/rpc/Cargo.toml @@ -2,7 +2,7 @@ authors = ["Pendulum"] edition = "2021" name = "module-pallet-staking-rpc" -version = "1.6.0-b" +version = "1.6.0-c" [dependencies] codec = { workspace = true, default-features = true } diff --git a/pallets/parachain-staking/rpc/runtime-api/Cargo.toml b/pallets/parachain-staking/rpc/runtime-api/Cargo.toml index b5590f8ee..bb5d33de0 100644 --- a/pallets/parachain-staking/rpc/runtime-api/Cargo.toml +++ b/pallets/parachain-staking/rpc/runtime-api/Cargo.toml @@ -2,7 +2,7 @@ authors = ["Pendulum"] edition = "2021" name = "module-pallet-staking-rpc-runtime-api" -version = "1.6.0-b" +version = "1.6.0-c" [dependencies] frame-support = { workspace = true } diff --git a/pallets/treasury-buyout-extension/Cargo.toml b/pallets/treasury-buyout-extension/Cargo.toml index ae0f1384c..1a992f6bc 100644 --- a/pallets/treasury-buyout-extension/Cargo.toml +++ b/pallets/treasury-buyout-extension/Cargo.toml @@ -2,7 +2,7 @@ authors = ["Pendulum Chain"] edition = "2021" name = "treasury-buyout-extension" -version = "1.6.0-b" +version = "1.6.0-c" [dependencies] codec = { workspace = true, features = ["derive", "max-encoded-len"] } diff --git a/pallets/vesting-manager/Cargo.toml b/pallets/vesting-manager/Cargo.toml index 726afc233..efb528f70 100644 --- a/pallets/vesting-manager/Cargo.toml +++ b/pallets/vesting-manager/Cargo.toml @@ -3,7 +3,7 @@ authors = ["Pendulum"] description = "A pallet to manage vesting schedules" edition = "2021" name = "vesting-manager" -version = "1.6.0-b" +version = "1.6.0-c" [dependencies] log = { workspace = true } diff --git a/runtime/amplitude/Cargo.toml b/runtime/amplitude/Cargo.toml index 586279e11..e98c16f98 100644 --- a/runtime/amplitude/Cargo.toml +++ b/runtime/amplitude/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" homepage = "https://pendulumchain.org" name = "amplitude-runtime" repository = "https://github.com/pendulum-chain/pendulum" -version = "1.6.0-b" +version = "1.6.0-c" [package.metadata.docs.rs] targets = ["x86_64-unknown-linux-gnu"] diff --git a/runtime/common/Cargo.toml b/runtime/common/Cargo.toml index 830dd0f32..bc8748d10 100644 --- a/runtime/common/Cargo.toml +++ b/runtime/common/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "runtime-common" -version = "1.6.0-b" +version = "1.6.0-c" authors = ["Pendulum"] description = "Pendulum runtime common" homepage = "https://pendulumchain.org" diff --git a/runtime/foucoco/Cargo.toml b/runtime/foucoco/Cargo.toml index fc581e610..79f2c32f1 100644 --- a/runtime/foucoco/Cargo.toml +++ b/runtime/foucoco/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" homepage = "https://pendulumchain.org" name = "foucoco-runtime" repository = "https://github.com/pendulum-chain/pendulum" -version = "1.6.0-b" +version = "1.6.0-c" [package.metadata.docs.rs] targets = ["x86_64-unknown-linux-gnu"] diff --git a/runtime/integration-tests/Cargo.toml b/runtime/integration-tests/Cargo.toml index d1b03c8fb..ec7db6902 100644 --- a/runtime/integration-tests/Cargo.toml +++ b/runtime/integration-tests/Cargo.toml @@ -3,7 +3,7 @@ name = "runtime-integration-tests" description = "Pendulum runtime integration tests" authors = ["Pendulum"] edition = "2021" -version = "1.6.0-b" +version = "1.6.0-c" [dev-dependencies] codec = { workspace = true, default-features = true } diff --git a/runtime/pendulum/Cargo.toml b/runtime/pendulum/Cargo.toml index c2e44b90c..34c1c97ce 100644 --- a/runtime/pendulum/Cargo.toml +++ b/runtime/pendulum/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" homepage = "https://pendulumchain.org" name = "pendulum-runtime" repository = "https://github.com/pendulum-chain/pendulum" -version = "1.6.0-b" +version = "1.6.0-c" [package.metadata.docs.rs] targets = ["x86_64-unknown-linux-gnu"]