Skip to content

Commit 0185f7c

Browse files
joepetrowskibkchr
andauthored
Trigger Release v1.2.5 (#342)
Trigger #316 `transaction_version` is bumped due to changed `SignedExtra`. Do not merge until the Broker patch is included (cc @eskimor @seadanda). - [x] Does not require a CHANGELOG entry --------- Co-authored-by: Bastian Köcher <git@kchr.de>
1 parent 200a935 commit 0185f7c

File tree

12 files changed

+24
-24
lines changed

12 files changed

+24
-24
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Changelog for the runtimes governed by the Polkadot Fellowship.
44

55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
66

7-
## [Unreleased]
7+
## [1.2.5] 06.06.2024
88

99
### Added
1010

relay/kusama/src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -162,10 +162,10 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
162162
spec_name: create_runtime_str!("kusama"),
163163
impl_name: create_runtime_str!("parity-kusama"),
164164
authoring_version: 2,
165-
spec_version: 1_002_004,
165+
spec_version: 1_002_005,
166166
impl_version: 0,
167167
apis: RUNTIME_API_VERSIONS,
168-
transaction_version: 25,
168+
transaction_version: 26,
169169
state_version: 1,
170170
};
171171

relay/polkadot/src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -150,10 +150,10 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
150150
spec_name: create_runtime_str!("polkadot"),
151151
impl_name: create_runtime_str!("parity-polkadot"),
152152
authoring_version: 0,
153-
spec_version: 1_002_004,
153+
spec_version: 1_002_005,
154154
impl_version: 0,
155155
apis: RUNTIME_API_VERSIONS,
156-
transaction_version: 25,
156+
transaction_version: 26,
157157
state_version: 1,
158158
};
159159

system-parachains/asset-hubs/asset-hub-kusama/src/lib.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -112,10 +112,10 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
112112
spec_name: create_runtime_str!("statemine"),
113113
impl_name: create_runtime_str!("statemine"),
114114
authoring_version: 1,
115-
spec_version: 1_002_004,
115+
spec_version: 1_002_005,
116116
impl_version: 0,
117117
apis: RUNTIME_API_VERSIONS,
118-
transaction_version: 14,
118+
transaction_version: 15,
119119
state_version: 1,
120120
};
121121

@@ -128,10 +128,10 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
128128
spec_name: create_runtime_str!("statemine"),
129129
impl_name: create_runtime_str!("statemine"),
130130
authoring_version: 1,
131-
spec_version: 1_002_004,
131+
spec_version: 1_002_005,
132132
impl_version: 0,
133133
apis: RUNTIME_API_VERSIONS,
134-
transaction_version: 14,
134+
transaction_version: 15,
135135
state_version: 0,
136136
};
137137

system-parachains/asset-hubs/asset-hub-polkadot/src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -146,10 +146,10 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
146146
spec_name: create_runtime_str!("statemint"),
147147
impl_name: create_runtime_str!("statemint"),
148148
authoring_version: 1,
149-
spec_version: 1_002_004,
149+
spec_version: 1_002_005,
150150
impl_version: 0,
151151
apis: RUNTIME_API_VERSIONS,
152-
transaction_version: 14,
152+
transaction_version: 15,
153153
state_version: 0,
154154
};
155155

system-parachains/bridge-hubs/bridge-hub-kusama/src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -166,10 +166,10 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
166166
spec_name: create_runtime_str!("bridge-hub-kusama"),
167167
impl_name: create_runtime_str!("bridge-hub-kusama"),
168168
authoring_version: 1,
169-
spec_version: 1_002_004,
169+
spec_version: 1_002_005,
170170
impl_version: 0,
171171
apis: RUNTIME_API_VERSIONS,
172-
transaction_version: 4,
172+
transaction_version: 5,
173173
state_version: 1,
174174
};
175175

system-parachains/bridge-hubs/bridge-hub-polkadot/src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -179,10 +179,10 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
179179
spec_name: create_runtime_str!("bridge-hub-polkadot"),
180180
impl_name: create_runtime_str!("bridge-hub-polkadot"),
181181
authoring_version: 1,
182-
spec_version: 1_002_004,
182+
spec_version: 1_002_005,
183183
impl_version: 0,
184184
apis: RUNTIME_API_VERSIONS,
185-
transaction_version: 3,
185+
transaction_version: 4,
186186
state_version: 1,
187187
};
188188

system-parachains/collectives/collectives-polkadot/src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -115,10 +115,10 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
115115
spec_name: create_runtime_str!("collectives"),
116116
impl_name: create_runtime_str!("collectives"),
117117
authoring_version: 1,
118-
spec_version: 1_002_004,
118+
spec_version: 1_002_005,
119119
impl_version: 0,
120120
apis: RUNTIME_API_VERSIONS,
121-
transaction_version: 6,
121+
transaction_version: 7,
122122
state_version: 0,
123123
};
124124

system-parachains/coretime/coretime-kusama/src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -134,10 +134,10 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
134134
spec_name: create_runtime_str!("coretime-kusama"),
135135
impl_name: create_runtime_str!("coretime-kusama"),
136136
authoring_version: 1,
137-
spec_version: 1_002_004,
137+
spec_version: 1_002_005,
138138
impl_version: 0,
139139
apis: RUNTIME_API_VERSIONS,
140-
transaction_version: 0,
140+
transaction_version: 1,
141141
state_version: 1,
142142
};
143143

system-parachains/encointer/src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -125,10 +125,10 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
125125
spec_name: create_runtime_str!("encointer-parachain"),
126126
impl_name: create_runtime_str!("encointer-parachain"),
127127
authoring_version: 1,
128-
spec_version: 1_002_004,
128+
spec_version: 1_002_005,
129129
impl_version: 1,
130130
apis: RUNTIME_API_VERSIONS,
131-
transaction_version: 3,
131+
transaction_version: 4,
132132
state_version: 0,
133133
};
134134

0 commit comments

Comments
 (0)