Release 0.2.2

This commit is contained in:
Jake Luer 2012-02-01 21:57:59 -05:00
parent 0b215480db
commit 19011701aa
4 changed files with 9 additions and 3 deletions

View file

@ -1,4 +1,9 @@
0.2.2 / 2012-02-01
==================
* added `been` (past of `be`) alias
0.2.1 / 2012-01-29
==================

View file

@ -936,6 +936,7 @@ Object.defineProperty(Assertion.prototype, 'html',
('below', 'lessThan')
('throw', 'throws')
('throw', 'Throw') // for troublesome browsers
('be', 'been') // past tense
('instanceof', 'instanceOf');
}); // module: assertion.js
@ -949,7 +950,7 @@ require.register("chai.js", function(module, exports, require){
var exports = module.exports = {};
exports.version = '0.2.1';
exports.version = '0.2.2';
exports.Assertion = require('./assertion');
exports.AssertionError = require('./error');

View file

@ -6,7 +6,7 @@
var exports = module.exports = {};
exports.version = '0.2.1';
exports.version = '0.2.2';
exports.Assertion = require('./assertion');
exports.AssertionError = require('./error');

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.2.1",
"version": "0.2.2",
"repository": {
"type": "git",
"url": "https://github.com/logicalparadox/chai"