Skip to content

Commit

Permalink
chore(master): release 3.0.0 (#558)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: James Hegedus <jthegedus@hey.com>
  • Loading branch information
github-actions[bot] and jthegedus committed Oct 8, 2023
1 parent 8e409b5 commit 4f8f793
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 8 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,18 @@

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

## [3.0.0](https://github.com/asdf-vm/actions/compare/v2.2.0...v3.0.0) (2023-09-17)


### ⚠ BREAKING CHANGES

* bump action to node20 ([#563](https://github.com/asdf-vm/actions/issues/563))

### Features

* bump action to node20 ([#563](https://github.com/asdf-vm/actions/issues/563)) ([a2d44a7](https://github.com/asdf-vm/actions/commit/a2d44a72f9174b83e100b92d27851c62696fa87c))
* 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))

## [2.2.0](https://github.com/asdf-vm/actions/compare/v2.1.0...v2.2.0) (2023-04-02)


Expand Down
16 changes: 8 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@asdf-vm/actions",
"version": "2.2.0",
"version": "3.0.0",
"description": "asdf github actions",
"repository": "https://github.com/asdf-vm/actions",
"author": "asdf Core Team (https://github.com/orgs/asdf-vm/people)",
Expand All @@ -10,12 +10,12 @@
"fmt": "xo --fix ./src/**/*.ts",
"type_check": "tsc",
"lint": "xo ./src/**/*.ts",
"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",
"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",
"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'"
},
"engines": {
"node": ">=20",
"pnpm": ">=8"
"node": "=16.20.0",
"pnpm": "=8.6.0"
},
"xo": {
"rules": {
Expand All @@ -25,15 +25,15 @@
}
},
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/core": "^1.10.0",
"@actions/exec": "^1.1.1",
"@actions/github": "^5.1.1",
"@actions/io": "^1.1.3"
},
"devDependencies": {
"@types/node": "^20.6.2",
"@types/node": "^20.2.5",
"esbuild": "^0.17.19",
"typescript": "^5.2.2",
"typescript": "^5.1.3",
"xo": "^0.54.2"
}
}
}

0 comments on commit 4f8f793

Please sign in to comment.