Skip to content

Commit

Permalink
v1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
vladikoff committed Nov 23, 2016
1 parent 6401cee commit 8d38fc2
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 18 deletions.
11 changes: 6 additions & 5 deletions .travis.yml
@@ -1,15 +1,16 @@
sudo: false

language: node_js

node_js:
- "0.10"
- "0.12"
- "4"
- "5"
- "iojs"
before_install:
- if [ "$TRAVIS_NODE_VERSION" = "0.10" ]; then npm install -g npm@2; fi
- "6"
- "7"

matrix:
fast_finish: true

cache:
directories:
- node_modules
5 changes: 5 additions & 0 deletions CHANGELOG
@@ -1,3 +1,8 @@
v1.1.0:
date: 2016-11-23
changes:
- Fix relative output
- Bump minor version
v1.0.0:
date: 2016-02-16
changes:
Expand Down
5 changes: 3 additions & 2 deletions README.md
@@ -1,4 +1,4 @@
# 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)
# 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)

> Validate files with JSHint
Expand Down Expand Up @@ -214,6 +214,7 @@ grunt.initConfig({

## Release History

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

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

*This file was generated on Fri Mar 18 2016 19:03:41.*
*This file was generated on Wed Nov 23 2016 17:34:42.*
13 changes: 3 additions & 10 deletions appveyor.yml
@@ -1,5 +1,3 @@
# http://www.appveyor.com/docs/appveyor-yml

clone_depth: 10

version: "{build}"
Expand All @@ -9,22 +7,17 @@ environment:
matrix:
- nodejs_version: "0.10"
platform: x86
- nodejs_version: "0.12"
platform: x86
- nodejs_version: "4"
platform: x64
- nodejs_version: "4"
platform: x86
- nodejs_version: "5"
- nodejs_version: "6"
platform: x86
- nodejs_version: "7"
platform: x86

install:
- ps: Install-Product node $env:nodejs_version $env:platform
- ps: >-
if ($env:nodejs_version -eq "0.10") {
npm -g install npm@2
$env:PATH="$env:APPDATA\npm;$env:PATH"
}
- npm install

test_script:
Expand Down
2 changes: 1 addition & 1 deletion package.json
@@ -1,7 +1,7 @@
{
"name": "grunt-contrib-jshint",
"description": "Validate files with JSHint",
"version": "1.0.0",
"version": "1.1.0",
"author": {
"name": "Grunt Team",
"url": "http://gruntjs.com/"
Expand Down

0 comments on commit 8d38fc2

Please sign in to comment.