Skip to content

Commit 0d8df10

Browse files
authored
Release 1.9.1 (#938)
Reduce WASM size to fit the limits. --------- Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io>
1 parent 9a5bb87 commit 0d8df10

File tree

15 files changed

+22
-16
lines changed

15 files changed

+22
-16
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@ 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+
## [1.9.1] 30.09.2025
8+
9+
### Fixed
10+
11+
- Reduce runtime blob size by 800KB to fit the limits ([polkadot-fellows/runtimes/pull/938](https://github.com/polkadot-fellows/runtimes/pull/938))
12+
713
## [1.9.0] 26.09.2025
814

915
### Added

Cargo.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

relay/kusama/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
188188
spec_name: alloc::borrow::Cow::Borrowed("kusama"),
189189
impl_name: alloc::borrow::Cow::Borrowed("parity-kusama"),
190190
authoring_version: 2,
191-
spec_version: 1_009_000,
191+
spec_version: 1_009_001,
192192
impl_version: 0,
193193
apis: RUNTIME_API_VERSIONS,
194194
transaction_version: 26,

relay/polkadot/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
175175
spec_name: alloc::borrow::Cow::Borrowed("polkadot"),
176176
impl_name: alloc::borrow::Cow::Borrowed("parity-polkadot"),
177177
authoring_version: 0,
178-
spec_version: 1_009_000,
178+
spec_version: 1_009_001,
179179
impl_version: 0,
180180
apis: RUNTIME_API_VERSIONS,
181181
transaction_version: 26,

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
143143
spec_name: Cow::Borrowed("statemine"),
144144
impl_name: Cow::Borrowed("statemine"),
145145
authoring_version: 1,
146-
spec_version: 1_009_000,
146+
spec_version: 1_009_001,
147147
impl_version: 0,
148148
apis: RUNTIME_API_VERSIONS,
149149
transaction_version: 15,

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
191191
impl_name: Cow::Borrowed("statemint"),
192192
spec_name: Cow::Borrowed("statemint"),
193193
authoring_version: 1,
194-
spec_version: 1_009_000,
194+
spec_version: 1_009_001,
195195
impl_version: 0,
196196
apis: RUNTIME_API_VERSIONS,
197197
transaction_version: 15,

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
180180
spec_name: Cow::Borrowed("bridge-hub-kusama"),
181181
impl_name: Cow::Borrowed("bridge-hub-kusama"),
182182
authoring_version: 1,
183-
spec_version: 1_009_000,
183+
spec_version: 1_009_001,
184184
impl_version: 0,
185185
apis: RUNTIME_API_VERSIONS,
186186
transaction_version: 5,

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
210210
spec_name: Cow::Borrowed("bridge-hub-polkadot"),
211211
impl_name: Cow::Borrowed("bridge-hub-polkadot"),
212212
authoring_version: 1,
213-
spec_version: 1_009_000,
213+
spec_version: 1_009_001,
214214
impl_version: 0,
215215
apis: RUNTIME_API_VERSIONS,
216216
transaction_version: 4,

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
130130
spec_name: Cow::Borrowed("collectives"),
131131
impl_name: Cow::Borrowed("collectives"),
132132
authoring_version: 1,
133-
spec_version: 1_009_000,
133+
spec_version: 1_009_001,
134134
impl_version: 0,
135135
apis: RUNTIME_API_VERSIONS,
136136
transaction_version: 7,

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
154154
spec_name: Cow::Borrowed("coretime-kusama"),
155155
impl_name: Cow::Borrowed("coretime-kusama"),
156156
authoring_version: 1,
157-
spec_version: 1_009_000,
157+
spec_version: 1_009_001,
158158
impl_version: 0,
159159
apis: RUNTIME_API_VERSIONS,
160160
transaction_version: 1,

0 commit comments

Comments
 (0)