Skip to content

Commit 72484d3

Browse files
committedApr 14, 2020
remove support for node v6/7
1 parent 0312160 commit 72484d3

File tree

4 files changed

+7
-3
lines changed

4 files changed

+7
-3
lines changed
 

‎.travis.yml

-1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,5 @@ node_js:
44
- 12
55
- 10
66
- 8
7-
- 6
87
matrix:
98
fast_finish: true

‎CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
## Changelog
22

3+
**3.1.1** - <small>_April 14, 2020_</small> — [Diff](https://github.com/archiverjs/node-archiver/compare/3.1.1...4.0.0)
4+
5+
- breaking: slowly catch up with node LTS, remove support for versions under 8.
6+
- update multiple deps.
7+
- fix for a hang with _statQueue (#388)
8+
39
**3.1.1** - <small>_August 2, 2019_</small> — [Diff](https://github.com/archiverjs/node-archiver/compare/3.1.0...3.1.1)
410

511
- update zip-stream to v2.1.2

‎appveyor.yml

-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ environment:
33
- nodejs_version: '12'
44
- nodejs_version: '10'
55
- nodejs_version: '8'
6-
- nodejs_version: '6'
76
install:
87
- ps: Install-Product node $env:nodejs_version
98
- set CI=true

‎package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
"lib"
2222
],
2323
"engines": {
24-
"node": ">= 6"
24+
"node": ">= 8"
2525
},
2626
"scripts": {
2727
"test": "mocha --reporter dot",

0 commit comments

Comments
 (0)
Please sign in to comment.