Skip to content

Commit

Permalink
Drop support for node 14
Browse files Browse the repository at this point in the history
  • Loading branch information
noahm committed May 30, 2023
1 parent 40ba75d commit 0ae7bc3
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Expand Up @@ -6,7 +6,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node: [14, 16, 18]
node: [16, 18, 20]
name: Checks with Node ${{ matrix.node }}
steps:
- uses: actions/checkout@v3
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Expand Up @@ -15,7 +15,7 @@ jobs:
- uses: actions/setup-node@v3
with:
always-auth: true
node-version: 16
node-version: 18
registry-url: "https://npm.pkg.github.com"
scope: "@noahm"
cache: "yarn"
Expand All @@ -33,7 +33,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
node-version: 18
registry-url: "https://registry.npmjs.org"
cache: "yarn"
- name: Install dependencies
Expand Down
3 changes: 2 additions & 1 deletion CHANGELOG.md
@@ -1,7 +1,8 @@
# Changelog

## Unreleased
## v0.5.0

- ** BREAKING ** drop support for Node 14
- Fixed non-song folders in packs causing fatal errors

## v0.4.1
Expand Down
4 changes: 2 additions & 2 deletions package.json
@@ -1,6 +1,6 @@
{
"name": "simfile-parser",
"version": "0.4.1",
"version": "0.5.0",
"description": "Read stepmania charts with javascript!",
"main": "./dist/main.js",
"browser": "./dist/browser.js",
Expand Down Expand Up @@ -36,7 +36,7 @@
"preset": "ts-jest"
},
"engines": {
"node": "^14.13.1 || >=16.0.0"
"node": ">=16.0.0"
},
"homepage": "https://github.com/noahm/simfile-parser#readme",
"devDependencies": {
Expand Down

0 comments on commit 0ae7bc3

Please sign in to comment.