Skip to content
Merged
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
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down Expand Up @@ -49,4 +49,4 @@
"workspaces": [
"."
]
}
}
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.18.5')
.version('0.19.0')
.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