From afa6853dfdc10a3fe63c770f767cdf4b56b50e0a Mon Sep 17 00:00:00 2001 From: vados-cosmonic <123968127+vados-cosmonic@users.noreply.github.com> Date: Mon, 12 May 2025 08:57:53 +0000 Subject: [PATCH] release: jco v1.11.2 Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- CHANGELOG.md | 28 ++++++++++++++++++++++++++++ package.json | 2 +- src/jco.js | 2 +- 3 files changed, 30 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 546f5a56d..aadaac066 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/package.json b/package.json index 0b1ff10c6..194aa7005 100644 --- a/package.json +++ b/package.json @@ -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", diff --git a/src/jco.js b/src/jco.js index 8537a8450..68998c644 100755 --- a/src/jco.js +++ b/src/jco.js @@ -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(' [options]') - .version('1.11.2-rc.2'); + .version('1.11.2'); function myParseInt(value) { return parseInt(value, 10);