Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: release v0.2.3 #297

Merged
merged 6 commits into from
Feb 29, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
node_modules/
coverage/
.env
.idea/
.tool-versions
.*.swp
.changelog
CHANGELOG.new.md
Expand Down
10 changes: 4 additions & 6 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,19 +1,17 @@


## 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))

#### :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)

Expand Down
7 changes: 6 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 2 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "tmp",
"version": "0.2.2",
"version": "0.2.3",
"description": "Temporary file and directory creator",
"author": "KARASZI István <github@spam.raszi.hu> (http://raszi.hu/)",
"contributors": [
Expand All @@ -24,8 +24,7 @@
"engines": {
"node": ">=14.14"
},
"dependencies": {
},
"dependencies": {},
"devDependencies": {
"eslint": "^6.3.0",
"eslint-plugin-mocha": "^6.1.1",
Expand Down