Skip to content

Commit 4f8f793

Browse files
chore(master): release 3.0.0 (#558)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: James Hegedus <[email protected]>
1 parent 8e409b5 commit 4f8f793

File tree

2 files changed

+20
-8
lines changed

2 files changed

+20
-8
lines changed

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,18 @@
22

33
All notable changes to this project will be documented in this file.
44

5+
## [3.0.0](https://github.com/asdf-vm/actions/compare/v2.2.0...v3.0.0) (2023-09-17)
6+
7+
8+
### ⚠ BREAKING CHANGES
9+
10+
* bump action to node20 ([#563](https://github.com/asdf-vm/actions/issues/563))
11+
12+
### Features
13+
14+
* bump action to node20 ([#563](https://github.com/asdf-vm/actions/issues/563)) ([a2d44a7](https://github.com/asdf-vm/actions/commit/a2d44a72f9174b83e100b92d27851c62696fa87c))
15+
* bump dependencies & to `typescript@5`. Use `pnpm` ([#557](https://github.com/asdf-vm/actions/issues/557)) ([8d23981](https://github.com/asdf-vm/actions/commit/8d2398103bfd46c1eea5a588e1e90132d7c0e76c))
16+
517
## [2.2.0](https://github.com/asdf-vm/actions/compare/v2.1.0...v2.2.0) (2023-04-02)
618

719

package.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@asdf-vm/actions",
3-
"version": "2.2.0",
3+
"version": "3.0.0",
44
"description": "asdf github actions",
55
"repository": "https://github.com/asdf-vm/actions",
66
"author": "asdf Core Team (https://github.com/orgs/asdf-vm/people)",
@@ -10,12 +10,12 @@
1010
"fmt": "xo --fix ./src/**/*.ts",
1111
"type_check": "tsc",
1212
"lint": "xo ./src/**/*.ts",
13-
"build": "esbuild src/install/main.ts src/plugin-test/main.ts src/plugins-add/main.ts src/setup/main.ts --bundle --outdir=. --target=node20 --platform=node",
13+
"build": "esbuild src/install/main.ts src/plugin-test/main.ts src/plugins-add/main.ts src/setup/main.ts --bundle --outdir=. --target=node16 --platform=node",
1414
"build:check_uncommitted_changes": "bash -c 'if [ $(git status --porcelain | grep --extended-regexp \"src|install|plugin-test|plugins-add\" | wc -l) -gt 0 ]; then printf \"* %s\\n\" \"Detected uncommitted changes after build. See status below:\"; git diff; exit 1; fi'"
1515
},
1616
"engines": {
17-
"node": ">=20",
18-
"pnpm": ">=8"
17+
"node": "=16.20.0",
18+
"pnpm": "=8.6.0"
1919
},
2020
"xo": {
2121
"rules": {
@@ -25,15 +25,15 @@
2525
}
2626
},
2727
"dependencies": {
28-
"@actions/core": "^1.10.1",
28+
"@actions/core": "^1.10.0",
2929
"@actions/exec": "^1.1.1",
3030
"@actions/github": "^5.1.1",
3131
"@actions/io": "^1.1.3"
3232
},
3333
"devDependencies": {
34-
"@types/node": "^20.6.2",
34+
"@types/node": "^20.2.5",
3535
"esbuild": "^0.17.19",
36-
"typescript": "^5.2.2",
36+
"typescript": "^5.1.3",
3737
"xo": "^0.54.2"
3838
}
39-
}
39+
}

0 commit comments

Comments
 (0)