Skip to content

Commit 2a21e34

Browse files
committed
Drop support for Node.js <8.x
1 parent 586b395 commit 2a21e34

5 files changed

Lines changed: 4 additions & 5 deletions

File tree

.travis.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ install:
44
node_js:
55
- '10'
66
- '8'
7-
- '6'
87
addons:
98
apt:
109
sources:

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ canvas.createJPEGStream() // new
3838
```
3939

4040
### Breaking
41-
* Drop support for Node.js <6.x
41+
* Drop support for Node.js <8.x
4242
* Remove sync stream functions (bc53059). Note that most streams are still
4343
synchronous (run in the main thread); this change just removed `syncPNGStream`
4444
and `syncJPEGStream`.

Readme.md

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

3434
By default, binaries for macOS, Linux and Windows will be downloaded. If you want to build from source, use `npm install --build-from-source`.
3535

36-
Currently the minimum version of node required is __6.0.0__
36+
Currently the minimum version of node required is __8.0.0__
3737

3838
### Compiling
3939

appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
version: 0.0.{build}
22
environment:
33
matrix:
4-
- nodejs_version: "6"
4+
- nodejs_version: "8"
55
image:
66
- Visual Studio 2013
77
- Visual Studio 2015

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
"standard": "^12.0.1"
5050
},
5151
"engines": {
52-
"node": ">=6"
52+
"node": ">=8"
5353
},
5454
"license": "MIT"
5555
}

0 commit comments

Comments
 (0)