Skip to content

Commit 877622e

Browse files
chore: update dependencies
Signed-off-by: Henry Gressmann <[email protected]>
1 parent 670f202 commit 877622e

File tree

5 files changed

+16
-14
lines changed

5 files changed

+16
-14
lines changed

CHANGELOG.md

+4-2
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,17 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8-
## [Unreleased]
8+
## [0.6.0] - 2024-03-27
9+
10+
**All Commits**: https://github.com/explodingcamera/tinywasm/compare/v0.5.0...v0.6.0
911

1012
### Added
1113

1214
- `Imports` and `Module` are now cloneable (#9)
1315

1416
### Changed
1517

16-
- Improved documentation and added more tests (735c7cb636edfd4704460c94a9c7d65e5bf4df48)
18+
- Improved documentation and added more tests
1719
- Tests can now be run on more targets (#11)
1820
- Nightly version has been updated to fix broken builds in some cases (#12)
1921
- Add `aarch64-apple-darwin` and `armv7-unknown-linux-gnueabihf` targets to CI (#12)

Cargo.lock

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

crates/cli/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ argh="0.1"
1919
color-eyre={version="0.6", default-features=false}
2020
log="0.4"
2121
pretty_env_logger="0.5"
22-
wast={version="201.0", optional=true}
22+
wast={version="202.0", optional=true}
2323

2424
[features]
2525
default=["wat"]

crates/parser/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ repository.workspace=true
99

1010
[dependencies]
1111
# fork of wasmparser with no_std support, see https://github.com/bytecodealliance/wasmtime/issues/3495
12-
wasmparser={version="0.200.3", package="tinywasm-wasmparser", default-features=false}
12+
wasmparser={version="0.202.0", package="tinywasm-wasmparser", default-features=false}
1313
log={version="0.4", optional=true}
1414
tinywasm-types={version="0.5.0", path="../types", default-features=false}
1515

crates/tinywasm/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ libm={version="0.2", default-features=false}
2020

2121
[dev-dependencies]
2222
wasm-testsuite={path="../wasm-testsuite"}
23-
wast={version="201.0"}
23+
wast={version="202.0"}
2424
owo-colors={version="4.0"}
2525
eyre={version="0.6"}
2626
serde_json={version="1.0"}

0 commit comments

Comments
 (0)