Skip to content

Commit

Permalink
Update to version 0.6.1.
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidAnson committed Jan 19, 2015
1 parent 024370d commit bd5d581
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -260,6 +260,7 @@ This makes it easy to pick out failures when running tests against many pages.
* 0.4.0 - Rename `onlySameDomainLinks` option to `onlySameDomain`, fix handling of redirected page links, use page order for links, update all dependencies.
* 0.5.0 - Show location of redirected links with `noRedirects` option, switch to `crc-hash` dependency.
* 0.6.0 - Support `summary` option, update `crc-hash`, `grunt-eslint`, `nock` dependencies.
* 0.6.1 - Add badges for automated build and coverage info to README (along with npm, GitHub, and license).


[npm-image]: https://img.shields.io/npm/v/grunt-check-pages.svg
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "grunt-check-pages",
"description": "Checks various aspects of a web page for correctness.",
"version": "0.6.0",
"version": "0.6.1",
"homepage": "https://github.com/DavidAnson/grunt-check-pages",
"author": {
"name": "David Anson",
Expand Down
4 changes: 2 additions & 2 deletions test/checkPages_test.js
Original file line number Diff line number Diff line change
Expand Up @@ -884,13 +884,13 @@ exports.checkPages = {
requestHeaders: function(test) {
test.expect(4);
nock('http://example.com')
.matchHeader('User-Agent', 'grunt-check-pages/0.6.0')
.matchHeader('User-Agent', 'grunt-check-pages/0.6.1')
.matchHeader('Cache-Control', 'no-cache')
.matchHeader('Pragma', 'no-cache')
.get('/page')
.reply(200, '<html><body><a href="link">link</a></body></html>');
nock('http://example.com')
.matchHeader('User-Agent', 'grunt-check-pages/0.6.0')
.matchHeader('User-Agent', 'grunt-check-pages/0.6.1')
.matchHeader('Cache-Control', 'no-cache')
.matchHeader('Pragma', 'no-cache')
.head('/link')
Expand Down

0 comments on commit bd5d581

Please sign in to comment.