From 4834cb436df77cc1473cda9090f67fbbfea71610 Mon Sep 17 00:00:00 2001 From: Naoya Kanai Date: Fri, 12 Feb 2016 01:36:42 +0900 Subject: [PATCH] Support Node v4 LTS semver-minor releases Fixes #6473 - Replace Node v4.2 with v4 in Travis config - Replace ~4.2.0 with ^4.2.0 in engines to support semver-minor bumps in LTS line --- .travis.yml | 2 +- README.md | 2 +- package.json | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index b88ffdf326..6e2a2874c0 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,7 +3,7 @@ language: node_js node_js: - "0.10" - "0.12" - - "4.2" + - "4" sudo: false cache: directories: diff --git a/README.md b/README.md index 0fa6fed184..9479ae0466 100644 --- a/README.md +++ b/README.md @@ -40,7 +40,7 @@ Install Node.js. ```bash # Node v0.10.x - recommended -# Node v0.12.x and v4.2.x - supported +# Node v0.12.x and v4.2.x / v4.3.x - supported # # Choose wisely ``` diff --git a/package.json b/package.json index c2a6ccbeef..5fa1a1a62c 100644 --- a/package.json +++ b/package.json @@ -23,7 +23,7 @@ "test": "grunt validate --verbose" }, "engines": { - "node": "~0.10.0 || ~0.12.0 || ~4.2.0", + "node": "~0.10.0 || ~0.12.0 || ^4.2.0", "iojs": "~1.2.0" }, "dependencies": {