Skip to content

Commit c34a8af

Browse files
release: componentize-js v0.20.0 (#332)
Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: vados-cosmonic <123968127+vados-cosmonic@users.noreply.github.com>
1 parent a555b8f commit c34a8af

File tree

4 files changed

+33
-4
lines changed

4 files changed

+33
-4
lines changed

CHANGELOG.md

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,34 @@
11
# Changelog
22

3+
## [0.20.0] - 2026-04-14
4+
5+
### 🚀 Features
6+
7+
* *(ci)* enable trusted publishing (#328) by @vados-cosmonic in #328
8+
9+
* support easy use of custom wizer bin (#323) by @vados-cosmonic in #323
10+
11+
12+
### 🐛 Bug Fixes
13+
14+
* use-after-free in cabi_realloc free_list on repeated export calls (#319) by @chaynabors in #319
15+
16+
17+
### ⚙️ Miscellaneous Tasks
18+
19+
* update codeowners (#326) by @vados-cosmonic in #326
20+
21+
22+
### Other Changes
23+
24+
* *(other changes)* Update StarlingMonkey (#325) by @andreiltd in #325
25+
26+
27+
28+
## New Contributors
29+
* @chaynabors made their first contribution in [#319](https://github.com/bytecodealliance/ComponentizeJS/pull/319)
30+
31+
332
## [0.20.0-rc.0] - 2026-04-13
433

534
### 🐛 Bug Fixes

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@bytecodealliance/componentize-js",
3-
"version": "0.20.0-rc.0",
3+
"version": "0.20.0",
44
"homepage": "https://github.com/bytecodealliance/componentize-js#readme",
55
"description": "ESM -> WebAssembly Component creator, via a SpiderMonkey JS engine embedding",
66
"type": "module",

src/cli.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ export async function componentizeCmd(jsSource, opts) {
2727
}
2828

2929
program
30-
.version('0.20.0-rc.0')
30+
.version('0.20.0')
3131
.description('Create a component from a JavaScript module')
3232
.usage('<js-source> --wit wit-world.wit -o <component-path>')
3333
.argument('<js-source>', 'JS source file to build')

0 commit comments

Comments
 (0)