Skip to content

Commit

Permalink
Release 2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
travisjeffery committed Oct 22, 2014
1 parent c967cf6 commit 64dfc0b
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 6 deletions.
1 change: 0 additions & 1 deletion .travis.yml
Expand Up @@ -3,4 +3,3 @@ node_js:
- "0.11"
- "0.10"
- "0.8"
- "0.6"
11 changes: 10 additions & 1 deletion 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
==================
Expand All @@ -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)

Expand Down
2 changes: 1 addition & 1 deletion 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": [
Expand Down
2 changes: 1 addition & 1 deletion 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": [
Expand Down
4 changes: 2 additions & 2 deletions package.json
@@ -1,6 +1,6 @@
{
"name": "mocha",
"version": "1.21.5",
"version": "2.0.0",
"description": "simple, flexible, fun test framework",
"keywords": [
"mocha",
Expand Down Expand Up @@ -30,7 +30,7 @@
"_mocha": "./bin/_mocha"
},
"engines": {
"node": ">= 0.4.x"
"node": ">= 0.8.x"
},
"scripts": {
"test": "make test-all"
Expand Down

4 comments on commit 64dfc0b

@boneskull
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@travisjeffery Ah, I have a 2.0.0 branch that I wanted to pull in for this. I only had it for a couple days though. My fault; I should have communicated that.

@jlfwong
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The mocha.js file in the root of the repo needs rebuilding.

https://github.com/mochajs/mocha/blob/master/mocha.js doesn't currently have the fix for #1358 in it.

Sorry if this is already being dealt with, or if this is part of some other release process I'm unaware of!

@boneskull
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think this was a mistake.

We should have a task runner handle version bumping, since we seem to often forget bits and pieces.

@steida
Copy link

@steida steida commented on 64dfc0b Nov 25, 2014

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Sorry, but where is a changelog or blog post about 2 version? Idk if it's save to update or not.

Please sign in to comment.