Skip to content

Commit

Permalink
Remove unmaintained node version
Browse files Browse the repository at this point in the history
  • Loading branch information
pvomhoff committed Aug 3, 2018
1 parent a961cc0 commit 9ec8b4b
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
language: node_js
sudo: false
node_js:
- "iojs"
- "10"
- "9"
- "8"
- "7"
- "6"
- "5"
- "4"
env:
- CXX="g++-4.8" CC="gcc-4.8"
addons:
Expand Down
11 changes: 10 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,18 @@ A nodejs library for [ETCD v2](https://coreos.com/etcd/docs/latest/v2/api.html),

## Install

For nodes >= 4.x:
For nodes >= 6.x:

```
$ npm install node-etcd
```

For nodes 4.x <= node < 6.x:

```
$ npm install node-etcd@6
```

For 0.10.x <= nodejs <= 4.x and iojs:

```
Expand All @@ -27,6 +33,9 @@ $ npm install node-etcd@3.0.2
```

## Changes
- 7.0.0
- Fixing vulnerabilities
- Drop support for nodejs version 4 &4
- 6.0.0
- Migrate from underscore to lodash for performance / @derektbrown
- Updated package versions / @derektbrown
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "node-etcd",
"version": "6.0.2",
"version": "7.0.0",
"description": "etcd library for node.js (etcd v2 api)",
"repository": {
"type": "git",
Expand Down Expand Up @@ -41,7 +41,7 @@
}
],
"engines": {
"node": ">= 0.10.0"
"node": ">= 6.0.0"
},
"main": "lib/index.js",
"scripts": {
Expand Down

0 comments on commit 9ec8b4b

Please sign in to comment.