Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,25 @@
# Changelog

## [0.19.3] - 2025-10-24

### 🐛 Bug Fixes

* *(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
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
2 changes: 1 addition & 1 deletion src/cli.js
Original file line number Diff line number Diff line change
Expand Up @@ -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('<js-source> --wit wit-world.wit -o <component-path>')
.argument('<js-source>', 'JS source file to build')
Expand Down
Loading