summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG.md6
-rw-r--r--Cargo.lock18
-rw-r--r--crates/cli/Cargo.toml2
-rw-r--r--crates/parser/Cargo.toml2
-rw-r--r--crates/tinywasm/Cargo.toml2
5 files changed, 16 insertions, 14 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 85c179e..1c51b74 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -5,7 +5,9 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
-## [Unreleased]
+## [0.6.0] - 2024-03-27
+
+**All Commits**: https://github.com/explodingcamera/tinywasm/compare/v0.5.0...v0.6.0
### Added
@@ -13,7 +15,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Changed
-- Improved documentation and added more tests (735c7cb636edfd4704460c94a9c7d65e5bf4df48)
+- Improved documentation and added more tests
- Tests can now be run on more targets (#11)
- Nightly version has been updated to fix broken builds in some cases (#12)
- Add `aarch64-apple-darwin` and `armv7-unknown-linux-gnueabihf` targets to CI (#12)
diff --git a/Cargo.lock b/Cargo.lock
index bff5c19..61a20c8 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -2066,7 +2066,7 @@ dependencies = [
"tinywasm-parser",
"tinywasm-types",
"wasm-testsuite",
- "wast 201.0.0",
+ "wast 202.0.0",
]
[[package]]
@@ -2078,7 +2078,7 @@ dependencies = [
"log",
"pretty_env_logger",
"tinywasm",
- "wast 201.0.0",
+ "wast 202.0.0",
]
[[package]]
@@ -2111,9 +2111,9 @@ dependencies = [
[[package]]
name = "tinywasm-wasmparser"
-version = "0.200.3"
+version = "0.202.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "365709f885b90cad71c71120414f99255e74d9d03f232618d9d1c6eb5db0ea99"
+checksum = "b02b9566a3c8b98f29dd9821d0584de1ad0290cdc9132296f66fbf4015001bb1"
dependencies = [
"ahash 0.8.11",
"bitflags 2.5.0",
@@ -2298,9 +2298,9 @@ dependencies = [
[[package]]
name = "wasm-encoder"
-version = "0.201.0"
+version = "0.202.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "b9c7d2731df60006819b013f64ccc2019691deccf6e11a1804bc850cd6748f1a"
+checksum = "bfd106365a7f5f7aa3c1916a98cbb3ad477f5ff96ddb130285a91c6e7429e67a"
dependencies = [
"leb128",
]
@@ -2528,15 +2528,15 @@ dependencies = [
[[package]]
name = "wast"
-version = "201.0.0"
+version = "202.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "1ef6e1ef34d7da3e2b374fd2b1a9c0227aff6cad596e1b24df9b58d0f6222faa"
+checksum = "1fbcb11204515c953c9b42ede0a46a1c5e17f82af05c4fae201a8efff1b0f4fe"
dependencies = [
"bumpalo",
"leb128",
"memchr",
"unicode-width",
- "wasm-encoder 0.201.0",
+ "wasm-encoder 0.202.0",
]
[[package]]
diff --git a/crates/cli/Cargo.toml b/crates/cli/Cargo.toml
index 61f419a..7d54ced 100644
--- a/crates/cli/Cargo.toml
+++ b/crates/cli/Cargo.toml
@@ -19,7 +19,7 @@ argh="0.1"
color-eyre={version="0.6", default-features=false}
log="0.4"
pretty_env_logger="0.5"
-wast={version="201.0", optional=true}
+wast={version="202.0", optional=true}
[features]
default=["wat"]
diff --git a/crates/parser/Cargo.toml b/crates/parser/Cargo.toml
index 197023d..6ba7461 100644
--- a/crates/parser/Cargo.toml
+++ b/crates/parser/Cargo.toml
@@ -9,7 +9,7 @@ repository.workspace=true
[dependencies]
# fork of wasmparser with no_std support, see https://github.com/bytecodealliance/wasmtime/issues/3495
-wasmparser={version="0.200.3", package="tinywasm-wasmparser", default-features=false}
+wasmparser={version="0.202.0", package="tinywasm-wasmparser", default-features=false}
log={version="0.4", optional=true}
tinywasm-types={version="0.5.0", path="../types", default-features=false}
diff --git a/crates/tinywasm/Cargo.toml b/crates/tinywasm/Cargo.toml
index 43f459a..0af1d0c 100644
--- a/crates/tinywasm/Cargo.toml
+++ b/crates/tinywasm/Cargo.toml
@@ -20,7 +20,7 @@ libm={version="0.2", default-features=false}
[dev-dependencies]
wasm-testsuite={path="../wasm-testsuite"}
-wast={version="201.0"}
+wast={version="202.0"}
owo-colors={version="4.0"}
eyre={version="0.6"}
serde_json={version="1.0"}