From 4a3b9cbb8d4694f0c4fa8d3698e30f10cf6051c1 Mon Sep 17 00:00:00 2001 From: David Majda Date: Wed, 4 Jun 2014 07:37:19 +0200 Subject: [PATCH] Require Node.js >= 0.10.0 Travis CI builds with Node.js 0.8.x started to fail: https://travis-ci.org/dmajda/pegjs/jobs/26691570 Rather than investigating what's wrong I decided to stop supporting Node 0.8.x. Node.js 0.10.x is here for over a year, which should be enough time for everyone to upgrade in the fast-paced Node.js world. --- .travis.yml | 1 - README.md | 2 +- package.json | 2 +- 3 files changed, 2 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 09d3ef3..20fd86b 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,4 +1,3 @@ language: node_js node_js: - - 0.8 - 0.10 diff --git a/README.md b/README.md index ce9b7d1..8580b00 100644 --- a/README.md +++ b/README.md @@ -416,7 +416,7 @@ Compatibility Both the parser generator and generated parsers should run well in the following environments: - * Node.js 0.8.0+ + * Node.js 0.10.0+ * IE 8+ * Firefox * Chrome diff --git a/package.json b/package.json index cd728f7..df5e10a 100644 --- a/package.json +++ b/package.json @@ -51,6 +51,6 @@ "jshint": "= 2.3.0" }, "engines": { - "node": ">= 0.8" + "node": ">= 0.10.0" } }