Skip to content

Commit 8d38fc2

Browse files
committed
v1.1.0
1 parent 6401cee commit 8d38fc2

File tree

5 files changed

+18
-18
lines changed

5 files changed

+18
-18
lines changed

.travis.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,16 @@
11
sudo: false
2+
23
language: node_js
4+
35
node_js:
46
- "0.10"
5-
- "0.12"
67
- "4"
7-
- "5"
8-
- "iojs"
9-
before_install:
10-
- if [ "$TRAVIS_NODE_VERSION" = "0.10" ]; then npm install -g npm@2; fi
8+
- "6"
9+
- "7"
10+
1111
matrix:
1212
fast_finish: true
13+
1314
cache:
1415
directories:
1516
- node_modules

CHANGELOG

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
v1.1.0:
2+
date: 2016-11-23
3+
changes:
4+
- Fix relative output
5+
- Bump minor version
16
v1.0.0:
27
date: 2016-02-16
38
changes:

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# grunt-contrib-jshint v1.0.0 [![Build Status: Linux](https://travis-ci.org/gruntjs/grunt-contrib-jshint.svg?branch=master)](https://travis-ci.org/gruntjs/grunt-contrib-jshint) [![Build Status: Windows](https://ci.appveyor.com/api/projects/status/j04ik7qgx21ixyfw/branch/master?svg=true)](https://ci.appveyor.com/project/gruntjs/grunt-contrib-jshint/branch/master)
1+
# grunt-contrib-jshint v1.1.0 [![Build Status: Linux](https://travis-ci.org/gruntjs/grunt-contrib-jshint.svg?branch=master)](https://travis-ci.org/gruntjs/grunt-contrib-jshint) [![Build Status: Windows](https://ci.appveyor.com/api/projects/status/j04ik7qgx21ixyfw/branch/master?svg=true)](https://ci.appveyor.com/project/gruntjs/grunt-contrib-jshint/branch/master)
22

33
> Validate files with JSHint
44
@@ -214,6 +214,7 @@ grunt.initConfig({
214214

215215
## Release History
216216

217+
* 2016-11-23   v1.1.0   Fix relative output Bump minor version
217218
* 2016-02-16   v1.0.0   Replace String prototype colors with chalk. Update Grunt peerDep to `>=0.4.0`.
218219
* 2016-01-17   v0.12.0   Update to JSHint ~2.9.0.
219220
* 2015-09-03   v0.11.3   Update to JSHint ~2.8.0.
@@ -254,4 +255,4 @@ grunt.initConfig({
254255

255256
Task submitted by ["Cowboy" Ben Alman](http://benalman.com/)
256257

257-
*This file was generated on Fri Mar 18 2016 19:03:41.*
258+
*This file was generated on Wed Nov 23 2016 17:34:42.*

appveyor.yml

Lines changed: 3 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
# http://www.appveyor.com/docs/appveyor-yml
2-
31
clone_depth: 10
42

53
version: "{build}"
@@ -9,22 +7,17 @@ environment:
97
matrix:
108
- nodejs_version: "0.10"
119
platform: x86
12-
- nodejs_version: "0.12"
13-
platform: x86
1410
- nodejs_version: "4"
1511
platform: x64
1612
- nodejs_version: "4"
1713
platform: x86
18-
- nodejs_version: "5"
14+
- nodejs_version: "6"
15+
platform: x86
16+
- nodejs_version: "7"
1917
platform: x86
2018

2119
install:
2220
- ps: Install-Product node $env:nodejs_version $env:platform
23-
- ps: >-
24-
if ($env:nodejs_version -eq "0.10") {
25-
npm -g install npm@2
26-
$env:PATH="$env:APPDATA\npm;$env:PATH"
27-
}
2821
- npm install
2922

3023
test_script:

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "grunt-contrib-jshint",
33
"description": "Validate files with JSHint",
4-
"version": "1.0.0",
4+
"version": "1.1.0",
55
"author": {
66
"name": "Grunt Team",
77
"url": "http://gruntjs.com/"

0 commit comments

Comments
 (0)