From b8f7d78b84ffb95039ceb79dda9b7482a73c51a2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?KARASZI=20Istv=C3=A1n?= Date: Wed, 28 Feb 2024 18:06:30 -0800 Subject: [PATCH 1/6] Update version --- package-lock.json | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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..76f2795 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": [ From 062efbbf014e3a3d851419fd283c0b5471d4d6bd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?KARASZI=20Istv=C3=A1n?= Date: Wed, 28 Feb 2024 18:22:23 -0800 Subject: [PATCH 2/6] Add a small note about the compatibility --- README.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) 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 From 4aba61eb4074c9d9a2075d6fcaf30926fe2e6c3a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?KARASZI=20Istv=C3=A1n?= Date: Wed, 28 Feb 2024 18:22:31 -0800 Subject: [PATCH 3/6] Ignore .env --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 523cb7e..24c377c 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,6 @@ node_modules/ coverage/ +.env .idea/ .*.swp .changelog From 4057ffa0c39fa0543fb0a0647b50ebf51ab116be Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?KARASZI=20Istv=C3=A1n?= Date: Wed, 28 Feb 2024 18:22:56 -0800 Subject: [PATCH 4/6] Update changelog --- CHANGELOG.md | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) 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) From 7a82d1f73c2a2452814d68c48a38d788d09dfb8e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?KARASZI=20Istv=C3=A1n?= Date: Wed, 28 Feb 2024 18:42:00 -0800 Subject: [PATCH 5/6] Add .tool-versions --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 24c377c..014f812 100644 --- a/.gitignore +++ b/.gitignore @@ -2,6 +2,7 @@ node_modules/ coverage/ .env .idea/ +.tool-versions .*.swp .changelog CHANGELOG.new.md From 998eec5efa53bbf41b93b69e1a183591248d2c2c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?KARASZI=20Istv=C3=A1n?= Date: Wed, 28 Feb 2024 18:42:09 -0800 Subject: [PATCH 6/6] Fix formatting --- package.json | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/package.json b/package.json index 76f2795..1efd85f 100644 --- a/package.json +++ b/package.json @@ -24,8 +24,7 @@ "engines": { "node": ">=14.14" }, - "dependencies": { - }, + "dependencies": {}, "devDependencies": { "eslint": "^6.3.0", "eslint-plugin-mocha": "^6.1.1",