From 7a9c90bdbb3d99657c55f74cf81350a26e4a6b18 Mon Sep 17 00:00:00 2001 From: vados-cosmonic <123968127+vados-cosmonic@users.noreply.github.com> Date: Tue, 16 Sep 2025 13:48:13 +0000 Subject: [PATCH] release: componentize-js v0.19.1 Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- CHANGELOG.md | 17 +++++++++++++++++ package-lock.json | 4 ++-- package.json | 2 +- src/cli.js | 2 +- 4 files changed, 21 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0077234c..6ecd4165 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,22 @@ # Changelog +## [0.19.1] - 2025-09-16 + +### 🐛 Bug Fixes + +* *(ci)* set latest release when creating GH release (#294) by @vados-cosmonic in #294 + + +### Other Changes + +* *(other changes)* Fix memory leak in call() retptr allocation (#295) by @ludfjig in #295 + + + +## New Contributors +* @ludfjig made their first contribution in [#295](https://github.com/bytecodealliance/ComponentizeJS/pull/295) + + ## [0.19.0] - 2025-09-08 ### 🐛 Bug Fixes diff --git a/package-lock.json b/package-lock.json index d6c1224d..3961e7bc 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@bytecodealliance/componentize-js", - "version": "0.18.5", + "version": "0.19.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@bytecodealliance/componentize-js", - "version": "0.18.5", + "version": "0.19.0", "workspaces": [ "." ], diff --git a/package.json b/package.json index a305a720..9713abb9 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@bytecodealliance/componentize-js", - "version": "0.19.0", + "version": "0.19.1", "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 822da129..39a1846f 100755 --- a/src/cli.js +++ b/src/cli.js @@ -21,7 +21,7 @@ export async function componentizeCmd(jsSource, opts) { } program - .version('0.19.0') + .version('0.19.1') .description('Create a component from a JavaScript module') .usage(' --wit wit-world.wit -o ') .argument('', 'JS source file to build')