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 CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,33 @@
# Changelog

## [1.11.2] - 2025-05-12

### 🐛 Bug Fixes

* *(jco)* missing stat dependency (#650) by @vados-cosmonic in #650

* *(jco)* appending to const value raises error (#648) by @thomas9911 in #648


### 🚜 Refactor

* *(jco)* re-arrange package.json, add contributors (#679) by @vados-cosmonic in #679


### ⚙️ Miscellaneous Tasks

* *(jco)* update printed versions (#677) by @vados-cosmonic in #677

* *(jco)* update printed CLI version by @vados-cosmonic



## New Contributors
* @jco-release-bot made their first contribution in [#684](https://github.com/bytecodealliance/jco/pull/684)
* @dependabot[bot] made their first contribution in [#662](https://github.com/bytecodealliance/jco/pull/662)
* @thomas9911 made their first contribution in [#648](https://github.com/bytecodealliance/jco/pull/648)


## [1.11.2-rc.2] - 2025-05-12

### 🐛 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/jco",
"version": "1.11.2-rc.2",
"version": "1.11.2",
"description": "JavaScript tooling for working with WebAssembly Components",
"homepage": "https://github.com/bytecodealliance/jco#readme",
"author": "Guy Bedford",
Expand Down
2 changes: 1 addition & 1 deletion src/jco.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ program
.name('jco')
.description(c`{bold jco - WebAssembly JS Component Tools}\n JS Component Transpilation Bindgen & Wasm Tools for JS`)
.usage('<command> [options]')
.version('1.11.2-rc.2');
.version('1.11.2');

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