diff --git a/.travis.yml b/.travis.yml index ed05f88d50..4a83e22d6f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,4 +3,3 @@ node_js: - "0.11" - "0.10" - "0.8" - - "0.6" diff --git a/History.md b/History.md index 9a63be65e3..ed4779fd34 100644 --- a/History.md +++ b/History.md @@ -1,3 +1,12 @@ +2.0.0 / 2014-10-21 +================== + + * remove: support for node 0.6.x, 0.4.x + * fix: landing reporter with non ansi characters (#211) + * fix: html reporter - preserve query params when navigating to suites/tests (#1358) + * fix: json stream reporter add error message to failed test + * fix: fixes for visionmedia -> mochajs + * fix: use stdio, fixes node deprecation warnings (#1391) 1.21.5 / 2014-10-11 ================== @@ -17,7 +26,7 @@ * fix: ability to disable syntax highlighting (#1329) * fix: added empty object to errorJSON() call to catch when no error is present * fix: never time out after calling enableTimeouts(false) - * fix: timeout(0) will work at suite level (#1300) + * fix: timeout(0) will work at suite level (#1300) * Fix for --watch+only() issue (#888 ) * fix: respect err.showDiff, add Base reporter test (#810) diff --git a/bower.json b/bower.json index 3a0ad4781e..63d8e8b223 100644 --- a/bower.json +++ b/bower.json @@ -1,6 +1,6 @@ { "name": "mocha", - "version": "1.21.5", + "version": "2.0.0", "homepage": "http://mocha.github.io/mocha", "description": "simple, flexible, fun test framework", "authors": [ diff --git a/component.json b/component.json index bcc1ac5ccd..99a06c99c9 100644 --- a/component.json +++ b/component.json @@ -1,6 +1,6 @@ { "name": "mocha", - "version": "1.21.5", + "version": "2.0.0", "repo": "mochajs/mocha", "description": "simple, flexible, fun test framework", "keywords": [ diff --git a/package.json b/package.json index ec5f31e3e0..45855cd6d4 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "mocha", - "version": "1.21.5", + "version": "2.0.0", "description": "simple, flexible, fun test framework", "keywords": [ "mocha", @@ -30,7 +30,7 @@ "_mocha": "./bin/_mocha" }, "engines": { - "node": ">= 0.4.x" + "node": ">= 0.8.x" }, "scripts": { "test": "make test-all"