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

## [1.27.0] - 2026-08-04

### 🚀 Features

- _(jco)_ enable exnref support switch by @vados-cosmonic in #1806

- _(jco)_ add shimming to componentize for 'node:path' by @vados-cosmonic

### 🧪 Testing

- _(jco)_ fix export line seaching in test by @vados-cosmonic

- _(jco)_ re-enable resource guest destructor componentize-js test by @vados-cosmonic

- _(jco)_ add test for CM destructor metadata fix by @vados-cosmonic in #1797

### ⚙️ Miscellaneous Tasks

- _(jco)_ update p3-shim to v0.2.2 by @vados-cosmonic

- _(jco)_ update p2-shim to v0.20.1 by @vados-cosmonic

- _(jco)_ update jco-transpile to v0.6.1 by @vados-cosmonic

- _(jco)_ update jco-transpile to v0.6.0 by @vados-cosmonic

- _(jco)_ update componentize-js to v0.22.0 by @vados-cosmonic

## [1.26.1] - 2026-07-27

### ⚙️ Miscellaneous Tasks
Expand Down
2 changes: 1 addition & 1 deletion packages/jco/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@bytecodealliance/jco",
"version": "1.26.1",
"version": "1.27.0",
"description": "JavaScript tooling for working with WebAssembly Components",
"keywords": [
"Component",
Expand Down
2 changes: 1 addition & 1 deletion packages/jco/src/jco.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ program
)
.usage("<command> [options]")
.enablePositionalOptions()
.version("1.26.1");
.version("1.27.0");

function myParseInt(value: string): number {
return parseInt(value, 10);
Expand Down
Loading