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

## [0.18.5] - 2025-08-28

### 🚀 Features

* *(tests)* replace mocha with vitest (#277) by @vados-cosmonic in #277


### 🐛 Bug Fixes

* *(docs)* Fix typo (#280) by @Mishra-Suraj in #280


### 🚜 Refactor

* *(tests)* split up test suites, update docs (#278) by @vados-cosmonic in #278


### ⚙️ Miscellaneous Tasks

* *(deps)* update wizer to ^10.0.0 (#283) by @vados-cosmonic in #283



## New Contributors
* @Mishra-Suraj made their first contribution in [#280](https://github.com/bytecodealliance/ComponentizeJS/pull/280)


## [0.18.4] - 2025-07-23

### 🚀 Features
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.4",
"version": "0.18.5",
"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.4')
.version('0.18.5')
.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