Release 0.1.7

This commit is contained in:
Jake Luer 2012-01-25 16:34:28 -05:00
parent d047691134
commit f8dbcf9f64
3 changed files with 14 additions and 3 deletions

View file

@ -1,4 +1,15 @@
0.1.7 / 2012-01-25
==================
* added assert tests to browser test runner
* browser update
* `should` interface patch for primitives support in FF
* fix isObject() Thanks @milewise
* travis only on branch `master`
* add instanceof alias `instanceOf`. #6
* some tests for assert module
0.1.6 / 2012-01-02
==================

View file

@ -6,7 +6,7 @@
var exports = module.exports = {};
exports.version = '0.1.6';
exports.version = '0.1.7';
exports.expect = require('./interface/expect');
exports.assert = require('./interface/assert');
@ -24,4 +24,4 @@ exports.fail = function (actual, expected, message, operator, stackStartFunction
operator: operator,
stackStartFunction: stackStartFunction
});
};
};

View file

@ -3,7 +3,7 @@
"name": "chai",
"description": "BDD/TDD assertion library for node.js and the browser. Test framework agnostic.",
"keywords": [ "test", "assertion", "assert", "testing" ],
"version": "0.1.6",
"version": "0.1.7",
"repository": {
"type": "git",
"url": "https://github.com/logicalparadox/chai"