Skip to content

Commit 8b8aef9

Browse files
committed
dropped support of old node.js versions
1 parent 120fd97 commit 8b8aef9

File tree

4 files changed

+9
-11
lines changed

4 files changed

+9
-11
lines changed

.editorconfig

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,6 @@ max_line_length = 100
1010
[package.json]
1111
indent_style = space
1212
indent_size = 2
13+
14+
[*.md]
15+
max_line_length = 80

.travis.yml

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,6 @@ node_js:
66
- "6"
77
- "5"
88
- "4"
9-
- "0.12.0"
10-
- "0.11.0"
11-
- "0.10.0"
12-
- "iojs"
13-
- "iojs-3"
14-
- "iojs-2"
15-
- "iojs-1.0.0"
169
before_install:
1710
- npm config set strict-ssl false
1811
- npm config set registry="http://registry.npmjs.org/"

CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
Changelog
22
=========
33

4-
v0.5.2
4+
v0.6.0
55
------
66

77
- Updated "devDependencies" versions to fix vulnerability alerts
8+
- Dropped support of io.js and node.js v0.12.x and lower since new versions of
9+
"devDependencies" couldn't work with those old node.js versions
810

911
v0.5.1
1012
------

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "deep-extend",
33
"description": "Recursive object extending",
44
"license": "MIT",
5-
"version": "0.5.2",
5+
"version": "0.6.0",
66
"homepage": "https://github.com/unclechu/node-deep-extend",
77
"keywords": [
88
"deep-extend",
@@ -53,8 +53,8 @@
5353
"test": "./node_modules/.bin/mocha"
5454
},
5555
"devDependencies": {
56-
"mocha": "4.1.0",
57-
"should": "5.2.0"
56+
"mocha": "5.2.0",
57+
"should": "13.2.1"
5858
},
5959
"files": [
6060
"index.js",

0 commit comments

Comments
 (0)