Skip to content

Commit 169028b

Browse files
authored
Merge pull request #915 from LinusU/drop-zero
Drop support for Node.js 0.x
2 parents c810f8f + f8f03d9 commit 169028b

File tree

3 files changed

+3
-6
lines changed

3 files changed

+3
-6
lines changed

.travis.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
language: node_js
22
node_js:
3+
- '7'
34
- '6'
45
- '4'
5-
- '0.12'
6-
- '0.10'
76
addons:
87
apt:
98
sources:
@@ -16,6 +15,4 @@ addons:
1615
- g++-4.9
1716
env:
1817
- CXX=g++-4.9
19-
before_install:
20-
- npm explore npm -g -- npm install node-gyp@latest
2118
sudo: false

Readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ $ npm install canvas
2929

3030
Unless previously installed you'll _need_ __Cairo__ and __Pango__. For system-specific installation view the [Wiki](https://github.com/Automattic/node-canvas/wiki/_pages).
3131

32-
Currently the minimum version of node required is __0.10.0__
32+
Currently the minimum version of node required is __4.0.0__
3333

3434
You can quickly install the dependencies by using the command for your OS:
3535

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
"standard": "^8.5.0"
4040
},
4141
"engines": {
42-
"node": ">=0.10.0"
42+
"node": ">=4"
4343
},
4444
"main": "./lib/canvas.js",
4545
"license": "MIT"

0 commit comments

Comments
 (0)