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

## [1.24.3] - 2026-06-19

### 🐛 Bug Fixes

- _(jco)_ world name config option regression by @vados-cosmonic

### 🧪 Testing

- _(jco)_ add regression test for world picking during typegen by @vados-cosmonic in #1665

## [1.24.2] - 2026-06-18

### 🚀 Features
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.24.2",
"version": "1.24.3",
"description": "JavaScript tooling for working with WebAssembly Components",
"keywords": [
"Component",
Expand Down
2 changes: 1 addition & 1 deletion packages/jco/src/jco.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ program
)
.usage("<command> [options]")
.enablePositionalOptions()
.version("1.24.2");
.version("1.24.3");

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