Skip to content

Commit 8951d0b

Browse files
authored
v5.35.0 release prep (#1203)
* v5.35.0 release prep * Cleanup * fmt
1 parent 2eaddd8 commit 8951d0b

File tree

9 files changed

+16
-21
lines changed

9 files changed

+16
-21
lines changed

Cargo.lock

+5-5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bin/collator/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "astar-collator"
3-
version = "5.34.0"
3+
version = "5.35.0"
44
description = "Astar collator implementation in Rust."
55
build = "build.rs"
66
default-run = "astar-collator"

runtime/astar/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "astar-runtime"
3-
version = "5.34.0"
3+
version = "5.35.0"
44
build = "build.rs"
55
authors.workspace = true
66
edition.workspace = true

runtime/astar/src/lib.rs

+2-7
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
148148
spec_name: create_runtime_str!("astar"),
149149
impl_name: create_runtime_str!("astar"),
150150
authoring_version: 1,
151-
spec_version: 82,
151+
spec_version: 83,
152152
impl_version: 0,
153153
apis: RUNTIME_API_VERSIONS,
154154
transaction_version: 2,
@@ -680,12 +680,7 @@ impl pallet_contracts::Config for Runtime {
680680
type CodeHashLockupDepositPercent = CodeHashLockupDepositPercent;
681681
type Debug = ();
682682
type Environment = ();
683-
type Migrations = (
684-
astar_primitives::migrations::contract_v12::Migration<Runtime, Balances>,
685-
pallet_contracts::migration::v13::Migration<Runtime>,
686-
astar_primitives::migrations::contract_v14::Migration<Runtime, Balances>,
687-
pallet_contracts::migration::v15::Migration<Runtime>,
688-
);
683+
type Migrations = ();
689684
}
690685

691686
// These values are based on the Astar 2.0 Tokenomics Modeling report.

runtime/local/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "local-runtime"
3-
version = "5.34.0"
3+
version = "5.35.0"
44
build = "build.rs"
55
authors.workspace = true
66
edition.workspace = true

runtime/shibuya/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "shibuya-runtime"
3-
version = "5.34.0"
3+
version = "5.35.0"
44
build = "build.rs"
55
authors.workspace = true
66
edition.workspace = true

runtime/shibuya/src/lib.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
173173
spec_name: create_runtime_str!("shibuya"),
174174
impl_name: create_runtime_str!("shibuya"),
175175
authoring_version: 1,
176-
spec_version: 124,
176+
spec_version: 125,
177177
impl_version: 0,
178178
apis: RUNTIME_API_VERSIONS,
179179
transaction_version: 2,
@@ -713,7 +713,7 @@ impl pallet_contracts::Config for Runtime {
713713
type CodeHashLockupDepositPercent = CodeHashLockupDepositPercent;
714714
type Debug = ();
715715
type Environment = ();
716-
type Migrations = (astar_primitives::migrations::contract_v12_fix::Migration<Runtime>,);
716+
type Migrations = ();
717717
}
718718

719719
// These values are based on the Astar 2.0 Tokenomics Modeling report.

runtime/shiden/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "shiden-runtime"
3-
version = "5.34.0"
3+
version = "5.35.0"
44
build = "build.rs"
55
authors.workspace = true
66
edition.workspace = true

runtime/shiden/src/lib.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
150150
spec_name: create_runtime_str!("shiden"),
151151
impl_name: create_runtime_str!("shiden"),
152152
authoring_version: 1,
153-
spec_version: 121,
153+
spec_version: 122,
154154
impl_version: 0,
155155
apis: RUNTIME_API_VERSIONS,
156156
transaction_version: 2,
@@ -677,7 +677,7 @@ impl pallet_contracts::Config for Runtime {
677677
type CodeHashLockupDepositPercent = CodeHashLockupDepositPercent;
678678
type Debug = ();
679679
type Environment = ();
680-
type Migrations = (astar_primitives::migrations::contract_v12_fix::Migration<Runtime>,);
680+
type Migrations = ();
681681
}
682682

683683
parameter_types! {

0 commit comments

Comments
 (0)