Skip to content
This repository has been archived by the owner on Nov 15, 2023. It is now read-only.

Commit

Permalink
Update wasm builder to fix bugs in detecting changed files (#1169)
Browse files Browse the repository at this point in the history
  • Loading branch information
bkchr authored May 29, 2020
1 parent 3c92e26 commit 3515197
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion parachain/test-parachains/adder/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ use wasm_builder_runner::WasmBuilder;
fn main() {
WasmBuilder::new()
.with_current_project()
.with_wasm_builder_from_crates("1.0.10")
.with_wasm_builder_from_crates("1.0.11")
.export_heap_base()
.build()
}
2 changes: 1 addition & 1 deletion parachain/test-parachains/code-upgrader/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ use wasm_builder_runner::WasmBuilder;
fn main() {
WasmBuilder::new()
.with_current_project()
.with_wasm_builder_from_crates("1.0.10")
.with_wasm_builder_from_crates("1.0.11")
.export_heap_base()
.build()
}
2 changes: 1 addition & 1 deletion parachain/test-parachains/halt/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ use wasm_builder_runner::WasmBuilder;
fn main() {
WasmBuilder::new()
.with_current_project()
.with_wasm_builder_from_crates("1.0.10")
.with_wasm_builder_from_crates("1.0.11")
.export_heap_base()
.build()
}
2 changes: 1 addition & 1 deletion runtime/kusama/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ use wasm_builder_runner::WasmBuilder;
fn main() {
WasmBuilder::new()
.with_current_project()
.with_wasm_builder_from_crates("1.0.10")
.with_wasm_builder_from_crates("1.0.11")
.import_memory()
.export_heap_base()
.build()
Expand Down
2 changes: 1 addition & 1 deletion runtime/polkadot/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ use wasm_builder_runner::WasmBuilder;
fn main() {
WasmBuilder::new()
.with_current_project()
.with_wasm_builder_from_crates("1.0.10")
.with_wasm_builder_from_crates("1.0.11")
.import_memory()
.export_heap_base()
.build()
Expand Down
2 changes: 1 addition & 1 deletion runtime/test-runtime/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ use wasm_builder_runner::WasmBuilder;
fn main() {
WasmBuilder::new()
.with_current_project()
.with_wasm_builder_from_crates("1.0.10")
.with_wasm_builder_from_crates("1.0.11")
.import_memory()
.export_heap_base()
.build()
Expand Down
2 changes: 1 addition & 1 deletion runtime/westend/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ use wasm_builder_runner::WasmBuilder;
fn main() {
WasmBuilder::new()
.with_current_project()
.with_wasm_builder_from_crates("1.0.10")
.with_wasm_builder_from_crates("1.0.11")
.import_memory()
.export_heap_base()
.build()
Expand Down

0 comments on commit 3515197

Please sign in to comment.