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
21 changes: 21 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,26 @@
# Changelog

## [0.18.3-rc.6] - 2025-07-14

### 🐛 Bug Fixes

* allow for use of both manual & fetchEvent based HTTP (#247) by @vados-cosmonic in #247

* makefile dep for splicer component (#251) by @vados-cosmonic in #251


### 🚜 Refactor

* splicer WIT and generated bindings (#252) by @vados-cosmonic in #252


### ⚙️ Miscellaneous Tasks

* *(ci)* add clippy (#248) by @vados-cosmonic in #248




## [0.18.3-rc.5] - 2025-07-08

### 🐛 Bug Fixes
Expand Down
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.18.3-rc.5",
"version": "0.18.3-rc.6",
"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 @@ -22,7 +22,7 @@ export async function componentizeCmd (jsSource, opts) {
}

program
.version('0.18.3-rc.5')
.version('0.18.3-rc.6')
.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