Update version number

- Update version number to 2.0.0 since changes affect backwards
  compatibility with node v4.
- Update Travis config to allow node module caching.
This commit is contained in:
David McCanney
2018-09-28 23:07:30 +01:00
parent 8fe37d2db5
commit 2fa51650b8
2 changed files with 5 additions and 3 deletions

View File

@@ -1,8 +1,10 @@
language: node_js language: node_js
cache:
directories:
- node_modules
node_js: node_js:
- "node" - "node"
- "6" - "6"
- "7" - "7"
- "8" - "8"
- "9" - "9"
- "10"

View File

@@ -1,6 +1,6 @@
{ {
"name": "base58", "name": "base58",
"version": "1.0.1", "version": "2.0.0",
"keywords": [ "keywords": [
"base58, flickr" "base58, flickr"
], ],
@@ -35,6 +35,6 @@
}, },
"scripts": { "scripts": {
"lint": "eslint . --fix", "lint": "eslint . --fix",
"test": "mocha test" "test": "mocha"
} }
} }