diff --git a/CHANGELOG.md b/CHANGELOG.md index a16734a5..d3d43e6d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,27 @@ # Changelog +## [0.19.3] - 2025-10-27 + +### 🐛 Bug Fixes + +* move jco dependency back to active (#315) by @vados-cosmonic in #315 + +* *(ci)* miscellaneous improvements to CI and tests (#310) by @vados-cosmonic in #310 + +* duplicated function names for same interfaces and export (#306) by @SanderVanRiessen in #306 + + +### Other Changes + +* *(other changes)* Updated orca_wasm into wirm latest version (#300) by @EngoDev in #300 + + + +## New Contributors +* @EngoDev made their first contribution in [#300](https://github.com/bytecodealliance/ComponentizeJS/pull/300) +* @SanderVanRiessen made their first contribution in [#306](https://github.com/bytecodealliance/ComponentizeJS/pull/306) + + ## [0.19.2] - 2025-10-17 ### 🚀 Features diff --git a/package.json b/package.json index 609a3682..3b8e5956 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@bytecodealliance/componentize-js", - "version": "0.19.2", + "version": "0.19.3", "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 c484ad93..ca2e3884 100755 --- a/src/cli.js +++ b/src/cli.js @@ -21,7 +21,7 @@ export async function componentizeCmd(jsSource, opts) { } program - .version('0.19.2') + .version('0.19.3') .description('Create a component from a JavaScript module') .usage(' --wit wit-world.wit -o ') .argument('', 'JS source file to build')