Skip to content

Commit

Permalink
runtime-1300 release prep (#1424)
Browse files Browse the repository at this point in the history
  • Loading branch information
ipapandinas authored Feb 19, 2025
1 parent 8b238f8 commit 82206c2
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 12 deletions.
6 changes: 3 additions & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion runtime/astar/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "astar-runtime"
version = "12.0.0"
version = "13.0.0"
build = "build.rs"
authors.workspace = true
edition.workspace = true
Expand Down
4 changes: 2 additions & 2 deletions runtime/astar/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
spec_name: create_runtime_str!("astar"),
impl_name: create_runtime_str!("astar"),
authoring_version: 1,
spec_version: 1200,
spec_version: 1300,
impl_version: 0,
apis: RUNTIME_API_VERSIONS,
transaction_version: 3,
Expand Down Expand Up @@ -460,7 +460,7 @@ impl pallet_dapp_staking::Config for Runtime {
type MinimumStakeAmount = MinimumStakingAmount;
type NumberOfTiers = ConstU32<4>;
type RankingEnabled = ConstBool<true>;
type MaxBonusSafeMovesPerPeriod = ConstU8<0>;
type MaxBonusSafeMovesPerPeriod = ConstU8<2>;
type WeightInfo = weights::pallet_dapp_staking::SubstrateWeight<Runtime>;
#[cfg(feature = "runtime-benchmarks")]
type BenchmarkHelper = DAppStakingBenchmarkHelper<SmartContract<AccountId>, AccountId>;
Expand Down
2 changes: 1 addition & 1 deletion runtime/shibuya/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "shibuya-runtime"
version = "12.0.0"
version = "13.0.0"
build = "build.rs"
authors.workspace = true
edition.workspace = true
Expand Down
4 changes: 2 additions & 2 deletions runtime/shibuya/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
spec_name: create_runtime_str!("shibuya"),
impl_name: create_runtime_str!("shibuya"),
authoring_version: 1,
spec_version: 1200,
spec_version: 1300,
impl_version: 0,
apis: RUNTIME_API_VERSIONS,
transaction_version: 3,
Expand Down Expand Up @@ -492,7 +492,7 @@ impl pallet_dapp_staking::Config for Runtime {
type MinimumStakeAmount = MinimumStakingAmount;
type NumberOfTiers = ConstU32<4>;
type RankingEnabled = ConstBool<true>;
type MaxBonusSafeMovesPerPeriod = ConstU8<0>;
type MaxBonusSafeMovesPerPeriod = ConstU8<2>;
type WeightInfo = weights::pallet_dapp_staking::SubstrateWeight<Runtime>;
#[cfg(feature = "runtime-benchmarks")]
type BenchmarkHelper = DAppStakingBenchmarkHelper<SmartContract<AccountId>, AccountId>;
Expand Down
2 changes: 1 addition & 1 deletion runtime/shiden/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "shiden-runtime"
version = "12.0.0"
version = "13.0.0"
build = "build.rs"
authors.workspace = true
edition.workspace = true
Expand Down
4 changes: 2 additions & 2 deletions runtime/shiden/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
spec_name: create_runtime_str!("shiden"),
impl_name: create_runtime_str!("shiden"),
authoring_version: 1,
spec_version: 1200,
spec_version: 1300,
impl_version: 0,
apis: RUNTIME_API_VERSIONS,
transaction_version: 3,
Expand Down Expand Up @@ -441,7 +441,7 @@ impl pallet_dapp_staking::Config for Runtime {
type MinimumStakeAmount = MinimumStakingAmount;
type NumberOfTiers = ConstU32<4>;
type RankingEnabled = ConstBool<true>;
type MaxBonusSafeMovesPerPeriod = ConstU8<0>;
type MaxBonusSafeMovesPerPeriod = ConstU8<2>;
type WeightInfo = weights::pallet_dapp_staking::SubstrateWeight<Runtime>;
#[cfg(feature = "runtime-benchmarks")]
type BenchmarkHelper = DAppStakingBenchmarkHelper<SmartContract<AccountId>, AccountId>;
Expand Down

0 comments on commit 82206c2

Please sign in to comment.