WARNING: THIS SITE IS A MIRROR OF GITHUB.COM / IT CANNOT LOGIN OR REGISTER ACCOUNTS / THE CONTENTS ARE PROVIDED AS-IS / THIS SITE ASSUMES NO RESPONSIBILITY FOR ANY DISPLAYED CONTENT OR LINKS / IF YOU FOUND SOMETHING MAY NOT GOOD FOR EVERYONE, CONTACT ADMIN AT ilovescratch@foxmail.com
Skip to content

Commit 4a69eb7

Browse files
release: jco v1.11.2-rc.2 (#684)
* fix(ci): generation for draft release changelog Signed-off-by: Victor Adossi <[email protected]> * release: jco v1.11.2-rc.2 Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --------- Signed-off-by: Victor Adossi <[email protected]> Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Victor Adossi <[email protected]> Co-authored-by: vados-cosmonic <[email protected]>
1 parent a8cb068 commit 4a69eb7

File tree

4 files changed

+34
-5
lines changed

4 files changed

+34
-5
lines changed

.github/workflows/release.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -371,9 +371,10 @@ jobs:
371371
GITHUB_REPO: ${{ github.repository }}
372372
run: |
373373
git cliff \
374-
--repository=${{ github.workspace }}/.git \
375-
--latest \
376-
--tag ${{ needs.meta.outputs.next-release-tag }} > CHANGELOG.current
374+
--repository=${{ github.workspace }}/.git \
375+
--unreleased \
376+
--tag=${{ needs.meta.outputs.next-release-tag }} \
377+
> CHANGELOG.current
377378
378379
- uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8
379380
with:

CHANGELOG.md

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,33 @@
11
# Changelog
22

3+
## [1.11.2-rc.2] - 2025-05-12
4+
5+
### 🐛 Bug Fixes
6+
7+
* *(jco)* missing stat dependency (#650) by @vados-cosmonic in #650
8+
9+
* *(jco)* appending to const value raises error (#648) by @thomas9911 in #648
10+
11+
12+
### 🚜 Refactor
13+
14+
* *(jco)* re-arrange package.json, add contributors (#679) by @vados-cosmonic in #679
15+
16+
17+
### ⚙️ Miscellaneous Tasks
18+
19+
* *(jco)* update printed versions (#677) by @vados-cosmonic in #677
20+
21+
* *(jco)* update printed CLI version by @vados-cosmonic
22+
23+
24+
25+
## New Contributors
26+
* @jco-release-bot made their first contribution in [#678](https://github.com/bytecodealliance/jco/pull/678)
27+
* @dependabot[bot] made their first contribution in [#662](https://github.com/bytecodealliance/jco/pull/662)
28+
* @thomas9911 made their first contribution in [#648](https://github.com/bytecodealliance/jco/pull/648)
29+
30+
331
## [1.11.2-rc.1] - 2025-05-12
432

533
### ⚙️ Miscellaneous Tasks

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@bytecodealliance/jco",
3-
"version": "1.11.2-rc.1",
3+
"version": "1.11.2-rc.2",
44
"description": "JavaScript tooling for working with WebAssembly Components",
55
"homepage": "https://github.com/bytecodealliance/jco#readme",
66
"author": "Guy Bedford",

src/jco.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ program
1313
.name('jco')
1414
.description(c`{bold jco - WebAssembly JS Component Tools}\n JS Component Transpilation Bindgen & Wasm Tools for JS`)
1515
.usage('<command> [options]')
16-
.version('1.11.2-rc.1');
16+
.version('1.11.2-rc.2');
1717

1818
function myParseInt(value) {
1919
return parseInt(value, 10);

0 commit comments

Comments
 (0)