diff --git a/.gitignore b/.gitignore index 523cb7e..014f812 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,8 @@ node_modules/ coverage/ +.env .idea/ +.tool-versions .*.swp .changelog CHANGELOG.new.md diff --git a/CHANGELOG.md b/CHANGELOG.md index cd97cb2..0cdbc6b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ -## v0.2.2 (2022-08-26) +## v0.2.2 (2024-02-28) #### :bug: Bug Fix * [#278](https://github.com/raszi/node-tmp/pull/278) Closes [#268](https://github.com/raszi/node-tmp/issues/268): Revert "fix #246: remove any double quotes or single quotes… ([@mbargiel](https://github.com/mbargiel)) @@ -8,12 +8,10 @@ #### :memo: Documentation * [#279](https://github.com/raszi/node-tmp/pull/279) Closes [#266](https://github.com/raszi/node-tmp/issues/266): move paragraph on graceful cleanup to the head of the documentation ([@silkentrance](https://github.com/silkentrance)) -#### :house: Internal -* switch to GitHub Actions -* fix tests for node >= 16 - -#### Committers: 3 +#### Committers: 5 - Carsten Klein ([@silkentrance](https://github.com/silkentrance)) +- Dave Nicolson ([@dnicolson](https://github.com/dnicolson)) +- KARASZI István ([@raszi](https://github.com/raszi)) - Maxime Bargiel ([@mbargiel](https://github.com/mbargiel)) - [@robertoaceves](https://github.com/robertoaceves) diff --git a/README.md b/README.md index 572b098..976ac9b 100644 --- a/README.md +++ b/README.md @@ -53,9 +53,14 @@ introduced tmpdir option. See the [CHANGELOG](./CHANGELOG.md) for more information. +### Version 0.2.3 + +- Node version <= 14.4 has been dropped. +- rimraf has been dropped from the dependencies + ### Version 0.2.2 -Since version 0.2.2, all support for node version <= 12 has been dropped. +Since version 0.2.2, all support for node version <= 14 has been dropped. ### Version 0.1.0 diff --git a/package-lock.json b/package-lock.json index 52bf9fb..2642803 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "tmp", - "version": "0.2.2", + "version": "0.2.3", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 285aee1..1efd85f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "tmp", - "version": "0.2.2", + "version": "0.2.3", "description": "Temporary file and directory creator", "author": "KARASZI István (http://raszi.hu/)", "contributors": [ @@ -24,8 +24,7 @@ "engines": { "node": ">=14.14" }, - "dependencies": { - }, + "dependencies": {}, "devDependencies": { "eslint": "^6.3.0", "eslint-plugin-mocha": "^6.1.1",