From 8d38fc2d5a17721b237c6d27834f76b68358f069 Mon Sep 17 00:00:00 2001 From: vladikoff Date: Wed, 23 Nov 2016 17:34:54 -0500 Subject: [PATCH] v1.1.0 --- .travis.yml | 11 ++++++----- CHANGELOG | 5 +++++ README.md | 5 +++-- appveyor.yml | 13 +++---------- package.json | 2 +- 5 files changed, 18 insertions(+), 18 deletions(-) diff --git a/.travis.yml b/.travis.yml index f63bfeb..73d2f7d 100644 --- a/.travis.yml +++ b/.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 diff --git a/CHANGELOG b/CHANGELOG index d7242bd..d2cc376 100644 --- a/CHANGELOG +++ b/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: diff --git a/README.md b/README.md index 0943ceb..ff5533a 100644 --- a/README.md +++ b/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 @@ -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. @@ -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.* diff --git a/appveyor.yml b/appveyor.yml index a196c5e..c0596b4 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,5 +1,3 @@ -# http://www.appveyor.com/docs/appveyor-yml - clone_depth: 10 version: "{build}" @@ -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: diff --git a/package.json b/package.json index a6abd30..1caa8b9 100644 --- a/package.json +++ b/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/"