diff --git a/.github/actions/test/action.yml b/.github/actions/test/action.yml index 7364499..3e2f902 100644 --- a/.github/actions/test/action.yml +++ b/.github/actions/test/action.yml @@ -11,11 +11,11 @@ inputs: # --- custom environment NODE_VERSION: - type: string - default: "16.x" + default: "20.x" + description: "node version" VERBOSE: - type: string default: "true" + description: "verbose" runs: # https://docs.github.com/en/actions/creating-actions/creating-a-composite-action diff --git a/.gitignore b/.gitignore index 245533b..912c3b5 100644 --- a/.gitignore +++ b/.gitignore @@ -27,4 +27,5 @@ build # https://docs.npmjs.com/misc/faq#should-i-check-my-node-modules-folder-into-git node_modules prebuilds -js \ No newline at end of file +js +/.idea/ diff --git a/.nvmrc b/.nvmrc index 3c03207..209e3ef 100644 --- a/.nvmrc +++ b/.nvmrc @@ -1 +1 @@ -18 +20 diff --git a/CHANGELOG.md b/CHANGELOG.md index 530e497..9423109 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file automatically by Versionist. DO NOT EDIT THIS FILE MANUALLY! This project adheres to [Semantic Versioning](http://semver.org/). +# v11.2.0 +## (2023-12-22) + +* support node 20 + # v11.1.0 ## (2023-01-05) diff --git a/package-lock.json b/package-lock.json index a97ed95..2a76b12 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "drivelist", - "version": "11.1.0", + "version": "11.2.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "drivelist", - "version": "11.1.0", + "version": "11.2.0", "hasInstallScript": true, "license": "Apache-2.0", "dependencies": { @@ -32,7 +32,7 @@ "typescript": "^4.9.4" }, "engines": { - "node": ">=16 < 19" + "node": ">=16" } }, "node_modules/@babel/code-frame": { diff --git a/package.json b/package.json index ec12747..6cf4595 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "drivelist", - "version": "11.1.0", + "version": "11.2.0", "description": "List all connected drives in your computer, in all major operating systems", "main": "js/index.js", "homepage": "https://github.com/balena-io-modules/drivelist", @@ -36,7 +36,7 @@ "author": "Juan Cruz Viotti ", "license": "Apache-2.0", "engines": { - "node": ">=16 < 19" + "node": ">=16" }, "devDependencies": { "@balena/lint": "^6.2.1",