From 19011701aadd407d76d2b965ed11c635d8a7ea96 Mon Sep 17 00:00:00 2001 From: Jake Luer Date: Wed, 1 Feb 2012 21:57:59 -0500 Subject: [PATCH] Release 0.2.2 --- History.md | 5 +++++ chai.js | 3 ++- lib/chai.js | 2 +- package.json | 2 +- 4 files changed, 9 insertions(+), 3 deletions(-) diff --git a/History.md b/History.md index 6d77725..8ac8036 100644 --- a/History.md +++ b/History.md @@ -1,4 +1,9 @@ +0.2.2 / 2012-02-01 +================== + + * added `been` (past of `be`) alias + 0.2.1 / 2012-01-29 ================== diff --git a/chai.js b/chai.js index 683838e..9cd04fb 100644 --- a/chai.js +++ b/chai.js @@ -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'); diff --git a/lib/chai.js b/lib/chai.js index b3c7e8a..0f02657 100644 --- a/lib/chai.js +++ b/lib/chai.js @@ -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'); diff --git a/package.json b/package.json index 348dcda..d66196c 100644 --- a/package.json +++ b/package.json @@ -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"