Skip to content

Commit

Permalink
Release 0.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
vesln committed Dec 13, 2013
1 parent c9271e2 commit 38c0383
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@

0.0.3 / 2013-12-13
==================

* Fix a bug where Assertion's stack is always true even when set to false

0.0.2 / 2013-12-10
==================

Expand Down
2 changes: 1 addition & 1 deletion component.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "hydro-chai",
"repo": "hydrojs/hydro-chai",
"description": "Chai.js integration for hydro",
"version": "0.0.2",
"version": "0.0.3",
"license": "MIT",
"main": "index.js",
"scripts": [
Expand Down
2 changes: 1 addition & 1 deletion hydro-chai.js
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ module.exports = function(hydro) {
}

if (opts.hasOwnProperty('stack')) {
chai.Assertion.includeStack = true;
chai.Assertion.includeStack = opts.stack;
}

if (opts.hasOwnProperty('diff')) {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "hydro-chai",
"version": "0.0.2",
"version": "0.0.3",
"description": "Chai.js integration for hydro",
"main": "./index.js",
"homepage": "https://github.com/hydrojs/hydro-chai",
Expand Down

0 comments on commit 38c0383

Please sign in to comment.