You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Oct 3, 2025. It is now read-only.
Copy file name to clipboardExpand all lines: CHANGELOG.md
+10-3Lines changed: 10 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,18 +5,25 @@ All notable changes to this project will be documented in this file.
5
5
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
6
6
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
8
-
<!-- ## [Unreleased] -->
8
+
## [Unreleased]
9
+
10
+
### Added
11
+
12
+
- Support for the custom memory page sizes proposal ([#22](https://github.com/explodingcamera/tinywasm/pull/22) by [@danielstuart14](https://github.com/danielstuart14))
Copy file name to clipboardExpand all lines: CONTRIBUTING.md
+3-21Lines changed: 3 additions & 21 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,29 +2,11 @@
2
2
3
3
> To improve the development experience, a number of custom commands and aliases have been added to the `.cargo/config.toml` file. These can be run using `cargo <command>`.
4
4
5
-
-**`cargo dev [args]`**\
6
-
e.g. `cargo dev -f check ./examples/wasm/call.wat -a i32:0`\
7
-
Run the development version of the tinywasm-cli. This is the main command used for developing new features.\
8
-
See [tinywasm-cli](./crates/cli) for more information.
9
-
10
-
-**`cargo test-mvp`**\
5
+
-**`cargo test-wasm-1`**\
11
6
Run the WebAssembly MVP (1.0) test suite. Be sure to cloned this repo with `--recursive` or initialize the submodules with `git submodule update --init --recursive`
12
7
13
-
-**`cargo test-2`**\
8
+
-**`cargo test-wasm-2`**\
14
9
Run the full WebAssembly test suite (2.0)
15
10
16
11
-**`cargo test-wast <path>`**\
17
-
Run a single WAST test file. e.g. `cargo test-wast ./examples/wast/i32.wast`
18
-
19
-
-**`cargo version-dev`**\
20
-
Bump the version to the next dev version. This should be used after a release so test results are not overwritten. Does not create a new github release.
21
-
22
-
## Workspace Commands
23
-
24
-
> These commands require the [cargo-workspaces](https://crates.io/crates/cargo-workspaces) crate to be installed.
25
-
26
-
-**`cargo workspaces version`**\
27
-
Bump the version of all crates in the workspace and push changes to git. This is used for releasing new versions on github.
28
-
29
-
-**`cargo workspaces publish --publish-as-is`**\
30
-
Publish all crates in the workspace to crates.io. This should be used a new version has been released on github. After publishing, the version should be bumped to the next dev version.
12
+
Run a single WAST test file. e.g. `cargo test-wast ./examples/wast/i32.wast`. Useful for debugging failing test-cases.
0 commit comments