Skip to content
This repository was archived by the owner on Oct 3, 2025. It is now read-only.

Commit eb97adc

Browse files
ci: fix build, update changelog
Signed-off-by: Henry Gressmann <[email protected]>
1 parent c34f696 commit eb97adc

File tree

3 files changed

+11
-1
lines changed

3 files changed

+11
-1
lines changed

.github/workflows/test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ jobs:
6262
name: "Linux armv7"
6363
target: armv7-unknown-linux-gnueabihf
6464

65-
name: Run tests on ${{ matrix.name }})
65+
name: Run tests on ${{ matrix.name }}
6666
runs-on: ${{ matrix.os }}
6767
steps:
6868
- name: Checkout code

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1111

1212
- Support for the custom memory page sizes proposal ([#22](https://github.com/explodingcamera/tinywasm/pull/22) by [@danielstuart14](https://github.com/danielstuart14))
1313

14+
### Changed
15+
16+
- **Breaking:**: New backwards-incompatible version of the twasm format (upgraded `rkyv` to 0.8.0)
17+
- Increased MSRV to 1.81.0
18+
19+
### Fixed
20+
21+
- Fixed archive **no_std** support which was broken in the previous release, and added more tests to ensure it stays working
22+
1423
## [0.8.0] - 2024-08-29
1524

1625
**All Commits**: https://github.com/explodingcamera/tinywasm/compare/v0.7.0...v0.8.0

examples/rust/build.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ mkdir -p "$dest_dir"
1414

1515
# build no_std
1616
cargo build --target wasm32-unknown-unknown --package rust-wasm-examples --profile=wasm --bin tinywasm_no_std --no-default-features
17+
cp "$out_dir/tinywasm_no_std.wasm" "$dest_dir/"
1718

1819
for bin in "${bins[@]}"; do
1920
RUSTFLAGS="-C target-feature=$rust_features -C panic=abort" cargo build --target wasm32-unknown-unknown --package rust-wasm-examples --profile=wasm --bin "$bin"

0 commit comments

Comments
 (0)