Skip to content

Commit f4b1522

Browse files
committed
Drop Node.js 0.10
1 parent 49da356 commit f4b1522

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

.travis.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
sudo: false
22
language: node_js
33
node_js:
4-
- "0.10"
54
- "4.2"
6-
- "5"
5+
- "6"
76
cache:
87
directories:
98
- node_modules

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@ A [Grunt](http://gruntjs.com/) task to run your [Jasmine](http://jasmine.github.
1212
feature suite using [jasmine-npm](https://github.com/jasmine/jasmine-npm)
1313
and [Istanbul](https://github.com/gotwarlost/istanbul) for code coverage reports.
1414

15+
The minimum supported Node.js version is `4.2.0` (LTS).
16+
1517
## Getting Started
1618

1719
Install this grunt plugin next to your project's `Gruntfile.js` with:
@@ -232,6 +234,7 @@ Please note that the junit reporter is no longer available. If you are using thi
232234

233235
* `v1.0.0` (2016-07-23)
234236
- **Breaking changes alert! Ensure you read the migration guide before updating from previous versions**
237+
- Minimum supported Node.js version is `4.2.0` (LTS), removed testing against `0.10`
235238
- Migrated from `jasmine-node` to `jasmine-npm` #35 #48
236239
- Support `includeAllSources` istanbul coverage option #45 #50
237240
- Support thresholds for passing/failing build #25

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
"license": "MIT",
2525
"main": "tasks/jasmine-node-task.js",
2626
"engines": {
27-
"node": ">=0.10.0"
27+
"node": ">=4.2.0"
2828
},
2929
"scripts": {
3030
"test": "grunt test",

0 commit comments

Comments
 (0)