Skip to content

Commit 5f0b252

Browse files
authored
Merge pull request #297 from raszi/feat/release-v0.2.3
feat: release v0.2.3
2 parents 6ed89d5 + 998eec5 commit 5f0b252

File tree

5 files changed

+15
-11
lines changed

5 files changed

+15
-11
lines changed

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
node_modules/
22
coverage/
3+
.env
34
.idea/
5+
.tool-versions
46
.*.swp
57
.changelog
68
CHANGELOG.new.md

CHANGELOG.md

+4-6
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,17 @@
11

22

3-
## v0.2.2 (2022-08-26)
3+
## v0.2.2 (2024-02-28)
44

55
#### :bug: Bug Fix
66
* [#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))
77

88
#### :memo: Documentation
99
* [#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))
1010

11-
#### :house: Internal
12-
* switch to GitHub Actions
13-
* fix tests for node >= 16
14-
15-
#### Committers: 3
11+
#### Committers: 5
1612
- Carsten Klein ([@silkentrance](https://github.com/silkentrance))
13+
- Dave Nicolson ([@dnicolson](https://github.com/dnicolson))
14+
- KARASZI István ([@raszi](https://github.com/raszi))
1715
- Maxime Bargiel ([@mbargiel](https://github.com/mbargiel))
1816
- [@robertoaceves](https://github.com/robertoaceves)
1917

README.md

+6-1
Original file line numberDiff line numberDiff line change
@@ -53,9 +53,14 @@ introduced tmpdir option.
5353

5454
See the [CHANGELOG](./CHANGELOG.md) for more information.
5555

56+
### Version 0.2.3
57+
58+
- Node version <= 14.4 has been dropped.
59+
- rimraf has been dropped from the dependencies
60+
5661
### Version 0.2.2
5762

58-
Since version 0.2.2, all support for node version <= 12 has been dropped.
63+
Since version 0.2.2, all support for node version <= 14 has been dropped.
5964

6065
### Version 0.1.0
6166

package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "tmp",
3-
"version": "0.2.2",
3+
"version": "0.2.3",
44
"description": "Temporary file and directory creator",
55
"author": "KARASZI István <github@spam.raszi.hu> (http://raszi.hu/)",
66
"contributors": [
@@ -24,8 +24,7 @@
2424
"engines": {
2525
"node": ">=14.14"
2626
},
27-
"dependencies": {
28-
},
27+
"dependencies": {},
2928
"devDependencies": {
3029
"eslint": "^6.3.0",
3130
"eslint-plugin-mocha": "^6.1.1",

0 commit comments

Comments
 (0)