Drop node 6 and add node 13

This commit is contained in:
Elliot Lee
2020-01-28 22:42:16 -08:00
parent 79610ab660
commit ae26db0a9d
3 changed files with 8 additions and 1 deletions

View File

@@ -1,9 +1,9 @@
language: node_js language: node_js
node_js: node_js:
- 6
- 8 - 8
- 10 - 10
- 12 - 12
- 13
script: script:
- yarn compile - yarn compile
- yarn test - yarn test

View File

@@ -1,5 +1,9 @@
# ripple-address-codec Release History # ripple-address-codec Release History
## UNRELEASED
* Drop support for node 6
## 4.1.0 (2020-01-22) ## 4.1.0 (2020-01-22)
* Throwable 'unexpected_payload_length' error: The message has been expanded with ' Ensure that the bytes are a Buffer.' * Throwable 'unexpected_payload_length' error: The message has been expanded with ' Ensure that the bytes are a Buffer.'

View File

@@ -32,5 +32,8 @@
"tslint": "^5.19.0", "tslint": "^5.19.0",
"tslint-eslint-rules": "^5.4.0", "tslint-eslint-rules": "^5.4.0",
"typescript": "^3.7.4" "typescript": "^3.7.4"
},
"engines": {
"node": ">= 8"
} }
} }