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

Bumps minimum NodeJS version required to v12 #94

Merged
merged 1 commit into from May 5, 2021
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
1 change: 0 additions & 1 deletion .travis.yml
Expand Up @@ -3,7 +3,6 @@ dist: focal
language: node_js

node_js:
- "10"
- "12"
- "14"
- "15"
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Expand Up @@ -5,6 +5,7 @@
- NEW: Adds NodeJS v16 to Travis build
- NEW: Adds NodeJS node (latest) to Travis build
- CHANGED: Moves lockfileVersion to v2
- CHANGED: Deprecates support for NodeJS v10 (EOL)

## Release 4.4.0

Expand Down
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -10,7 +10,7 @@ A Node.JS client for the [DNSimple API v2](https://developer.dnsimple.com/v2/).

## Requirements

The dnsimple-node package requires node 10.0.0 or higher.
The dnsimple-node package requires node 12.0.0 or higher.

You must also have an activated DNSimple account to access the DNSimple API.

Expand Down
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -20,7 +20,7 @@
},
"bugs:": "https://github.com/dnsimple/dnsimple-node/issues",
"engines": {
"node": ">= v10.0.0"
"node": ">= v12.0.0"
},
"main": "lib/dnsimple.js",
"files": [
Expand Down