From 331f0af5ba21f0f6f97ef8f46172ccb14574a53b Mon Sep 17 00:00:00 2001 From: andreiltd <7009786+andreiltd@users.noreply.github.com> Date: Mon, 21 Sep 2026 07:41:05 +0000 Subject: [PATCH] release: componentize-js v0.23.0 Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- CHANGELOG.md | 20 ++++++++++++++++++++ package.json | 2 +- src/cli.js | 2 +- 3 files changed, 22 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 48aee561..d3eeadda 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,25 @@ # Changelog +## [0.23.0] - 2026-09-21 + +### 🐛 Bug Fixes + +* use STARLINGMONKEY_SRC variable in include_directories (#348) by @cuban-goats in #348 + + +### Other Changes + +* *(other changes)* bump js-component-bindgen crate (#353) by @andreiltd in #353 + +* *(other changes)* bump weval to v0.5.0 (#352) by @walf443 in #352 + + + +## New Contributors +* @walf443 made their first contribution in [#352](https://github.com/bytecodealliance/ComponentizeJS/pull/352) +* @cuban-goats made their first contribution in [#348](https://github.com/bytecodealliance/ComponentizeJS/pull/348) + + ## [0.22.0] - 2026-07-31 ### 🚀 Features diff --git a/package.json b/package.json index 7238e16f..f1d62895 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@bytecodealliance/componentize-js", - "version": "0.22.0", + "version": "0.23.0", "homepage": "https://github.com/bytecodealliance/componentize-js#readme", "description": "ESM -> WebAssembly Component creator, via a SpiderMonkey JS engine embedding", "type": "module", diff --git a/src/cli.js b/src/cli.js index 770b1cda..62a72a11 100755 --- a/src/cli.js +++ b/src/cli.js @@ -27,7 +27,7 @@ export async function componentizeCmd(jsSource, opts) { } program - .version('0.22.0') + .version('0.23.0') .description('Create a component from a JavaScript module') .usage(' --wit wit-world.wit -o ') .argument('', 'JS source file to build')