Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# Changelog

## [0.21.0-rc.0] - 2026-05-19

### 🐛 Bug Fixes

* improve weval and wizer error reporting (#333) by @andreiltd in #333


### ⚙️ Miscellaneous Tasks

* *(deps)* update js-component-bindgen (#337) by @vados-cosmonic in #337




## [0.20.0] - 2026-04-14

### 🚀 Features
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@bytecodealliance/componentize-js",
"version": "0.20.0",
"version": "0.21.0-rc.0",
"homepage": "https://github.com/bytecodealliance/componentize-js#readme",
"description": "ESM -> WebAssembly Component creator, via a SpiderMonkey JS engine embedding",
"type": "module",
Expand Down
2 changes: 1 addition & 1 deletion src/cli.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export async function componentizeCmd(jsSource, opts) {
}

program
.version('0.20.0')
.version('0.21.0-rc.0')
.description('Create a component from a JavaScript module')
.usage('<js-source> --wit wit-world.wit -o <component-path>')
.argument('<js-source>', 'JS source file to build')
Expand Down
Loading