diff --git a/CHANGELOG.md b/CHANGELOG.md index f7112478..0077234c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,21 @@ # Changelog +## [0.19.0] - 2025-09-08 + +### 🐛 Bug Fixes + +* *(ops)* add catch-all for non-conventional commits (#290) by @vados-cosmonic in #290 + +* *(tests)* race condition with server random port (#288) by @vados-cosmonic in #288 + + +### Other Changes + +* *(other changes)* Update starlingmonkey to 0.2.0 (#285) by @karthik2804 in #285 + + + + ## [0.18.5] - 2025-08-28 ### 🚀 Features diff --git a/package.json b/package.json index 956afbad..a305a720 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@bytecodealliance/componentize-js", - "version": "0.18.5", + "version": "0.19.0", "homepage": "https://github.com/bytecodealliance/componentize-js#readme", "description": "ESM -> WebAssembly Component creator, via a SpiderMonkey JS engine embedding", "type": "module", @@ -49,4 +49,4 @@ "workspaces": [ "." ] -} \ No newline at end of file +} diff --git a/src/cli.js b/src/cli.js index fba3ff5a..822da129 100755 --- a/src/cli.js +++ b/src/cli.js @@ -21,7 +21,7 @@ export async function componentizeCmd(jsSource, opts) { } program - .version('0.18.5') + .version('0.19.0') .description('Create a component from a JavaScript module') .usage(' --wit wit-world.wit -o ') .argument('', 'JS source file to build')